or
function WebForm_FindFirstFocusableChild(control)
function WebForm_PostBackOptions
<telerik:RadTreeView runat="server" ID="RadTreeView1" Skin="Vista"> <NodeTemplate> <div style="width:400px;" dir="rtl"> <div id="CommentTopSection" runat="server" style="cursor: pointer; font-size: 12px; width:100%; color: Black; font-family: Arial; text-align: right;"> <asp:Label ID="lbl_CommentID" runat="server" Text='<%# Eval("CommentID") %>' Visible="False"></asp:Label> <asp:Label ID="lbl_CommentNumer" runat="server" Text='<%# Eval("CommentIncerment") %>'></asp:Label> <asp:Label ID="lbl_CommentTitle" runat="server" Text='<%# Eval("CommentTitle") %>'></asp:Label> <br /> <span style="font-size: 12px; color: Gray; font-family: arial;"><%# Eval("Name") %> , <%# Eval("CommentDate") %> </span> </div> <div id="CommentExpand" runat="server" style="padding-bottom:5px; font-family:Arial; font-size:12px; color:Black; text-align:right; visibility: hidden; height: 0px; width: 400px; border: 1px 1px 0px 1px solid #C0C0C0; background-color: #F1F5FA"> <br /> <%# Eval("CommentContent") %> <br /> <br /> <span id="span_AddNewComment" runat="server" style="padding-left:10px; cursor:pointer; font-family:Arial; font-size:12px; font-weight:bold; text-decoration:underline; color:Black;"> ????? ???? </span> <span id="span_AddParentComment" runat="server" style="cursor:pointer; font-family:Arial; font-size:12px; font-weight:bold; text-decoration:underline; color:Black;"> ????? ?????? </span> </NodeTemplate> <DataBindings> <telerik:RadTreeNodeBinding Expanded="True" /> </DataBindings> </telerik:RadTreeView>
GridItem commandItem = RadGrid1.MasterTableView.GetItems(GridItemType.CommandItem)[0]; RadToolBar radtoolbar = (RadToolBar)commandItem.FindControl("RadToolBar1"); RadToolBarItem comboitem = radtoolbar.FindItemByText("RadToolBarButton1"); RadComboBox rcb = (RadComboBox)comboitem.FindControl("RadComboBox1");<
div id="TabForms">
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0" EnableEmbeddedSkins="False">
<Tabs>
<telerik:RadTab Text="Header Info">
</telerik:RadTab>
<telerik:RadTab Text="Section - 1" >
</telerik:RadTab>
<telerik:RadTab Text="Section - 2 & 3" >
</telerik:RadTab>
<telerik:RadTab Text="Section - 4">
</telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" >
<telerik:RadPageView ID="RadPageView1" runat="server">
Thanks so much for help.
<telerik:RadComboBox ID="cboIndustrie" ToolTip="Industrie d'appartenance de l'entreprise." Width="200" AllowCustomText="false" runat="server"> </telerik:RadComboBox> <asp:LinkButton Text="[Ajouter une industrie]" runat="server" CausesValidation="false" ID="lnkIndustrie"OnClientClick="window.radopen(null, 'windowIndustrie'); return false;" OnClick="lnkIndustrie_Click"></asp:LinkButton> <telerik:RadWindowManager ID="windowManager" runat="server"> <Windows> <telerik:RadWindow ID="windowIndustrie" Title="Nouvelle industrie" ShowContentDuringLoad="false" Width="400px" Height="200px" Behaviors="Default" runat="server" EnableShadow="true" Modal="true" NavigateUrl="AddIndustrie.aspx" VisibleStatusbar="false" /> </Windows> </telerik:RadWindowManager> <telerik:RadAjaxManager ID="ajaxManager" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="lnkIndustrie"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="cboIndustrie" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> The general execution process is working fine, but if I remove "return false;" after calling window.radopen() the page will reload while users are filling my form. So, I need to find a way to hold execution while windowIndustrie is open.