i have a radgrid showing header data with a nested detail table.
the header data is inserted/edited via an editForm.
the detail data is inserted/edited via a user control contained in a popup (EditFormType = WebUserControl).
data is submitted from the editForm using an asp.net button whose CommandName property is either "PerformInsert" or "Update".
upon submission of the new header data, i would like for the popup edit control to automatically appear so that detail data can be entered right away instead of having the user expand the newly created header row and then clicking "Add New Detail Record".
how can this be done?
function onTabSelecting(sender, args) { var multiPage = $find("<%=RadMultiPage1.ClientID %>"); var pageView = multiPage.findPageViewByID(args.get_tab().get_pageViewID()); switch (args.get_tab().get_pageViewID()) { case "RadPageView2": //pageView.set_contentUrl("~/pageviews/emailTemplates.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/emailTemplates.aspx"); break; case "RadPageView3": //pageView.set_contentUrl("~/pageviews/originalEmails.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/originalEmails.aspx"); break; case "RadPageView4": //pageView.set_contentUrl("~/pageviews/CourtList.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/CourtList.aspx"); break; case "RadPageView5": //pageView.set_contentUrl("~/pageviews/region.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/region.aspx"); break; case "RadPageView6": //pageView.set_contentUrl("~/pageviews/listmgmt.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/listmgmt.aspx"); break; case "RadPageView7": //pageView.set_contentUrl("~/pageviews/subscribers.aspx"); args.get_tab().get_pageView().set_contentUrl("pageviews/subscribers.aspx"); break; } // alert("The ID of the selected RadPageView is " + args.get_tab().get_pageViewID());Your help is appreciated.
Thank You!
type_code = reader("type_code").ToStringTry Me.Type_Code_Combo.SelectedValue = type_codeCatch ex As Exception ' just ignore if there is no matchEnd Try
Note: I am aware that I can set "allow custom text" but that is not the intent, rather to insulate my page from data errors, and allow for corrections by setting the selected value to nothing and letting the user make a proper selection. But if that is the only way, how to I synchronize so that the text in the box matches the selectedvalue in the list?

<label for="<%= myTextBox.ClientID %>" >Text</label><asp:TextBox id="myTextBox" runat="server />