or
| var popUp; | |
| function PopUpShowing(sender, eventArgs) | |
| { | |
| var domEvent = eventArgs.get_domEvent(); | |
| var target = domEvent.target; | |
| ... | |
| } |

Hello Telerik,
Just quick qustion from my side:
How can I set selection in new row (after insert) in Relation Table?
I use ItemCommand for handle Insert event. I try to use e.Item.Selected = true; and e.Item.OwnerTableView.Items[selectedIndex].Selected = true; - but no effect.
For Master table selection set very easy:
RadGrid1.SelectedRow = selectedIndex;
Please explain how can I make selection for new (inserted) row for detail table.
The spellcheck feature in our radEditors is a little buggy.
Our users are getting a bit frustrated with the unpredictability of the spellcheck feature. Do any of these bugs have fixes? Have you heard any complaints about any of these things before?
Thanks,
Lisa
| <NestedViewTemplate> |
| <uc1:AppViewer ID="AppViewer1" runat="server" /> |
| </NestedViewTemplate> |
| <telerik:RadComboBox ID="list_appState" Runat="server" Skin="Sunset" SelectedValue='<%# Bind("app_state") %>' AutoPostBack="True" OnSelectedIndexChanged="list_appState_SelectedIndexChanged"> |
| Protected Sub list_appState_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) |
| Dim record As Integer = (TryCast(Parent.FindControl("GridRec"), Label)).Text |
| Dim AppState As String = (TryCast(formview_AppInfo.FindControl("list_appState"), RadComboBox)).SelectedValue |
| Dim UpdateSuccess As Integer = Applications.UpdateAppState(record, AppState) |
| If UpdateSuccess > 0 Then |
| lbl_status.Text = String.Format("<br />The Application Status has been updated to '{0}' for record: {1}.<br /><br />", AppState, record) |
| 'Dim grid As RadGrid = Parent.FindControl("grid_applications") |
| 'grid.Rebind() |
| End If |
| End Sub |