hi there,
i using RadComboBox and RadTreeView together. i use the AjaxPanel in RadComboBox's itemtemplate but also and sometimes on some forms of our projects that Which has been used Master AjaxPanel , we face with this JS Error!!!
Error: Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Script control 'SimpleTreeDownTree' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
Source File: http://localhost:2518/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=...
is there any idea use inner AjaxPanel inside master Ajax panel that have not conflict together?
i using RadComboBox and RadTreeView together. i use the AjaxPanel in RadComboBox's itemtemplate but also and sometimes on some forms of our projects that Which has been used Master AjaxPanel , we face with this JS Error!!!
Error: Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Script control 'SimpleTreeDownTree' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
Source File: http://localhost:2518/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=...
is there any idea use inner AjaxPanel inside master Ajax panel that have not conflict together?
<telerik:RadComboBox ID="SimpleTreeDownItems" runat="server" Height="255px" Width="420px" AllowCustomText="true" EmptyMessage="Select Anythings" ToolTip="Select" Style="vertical-align: middle;" OnDataBound="SimpleTreeDownItems_DataBound" OnPreRender="SimpleTreeDownItems_PreRender" OnClientDropDownOpened="SimpleTreeDownItems_OnClientDropDownOpenedHandler" > <collapseanimation duration="400" type="inback" /> <expandanimation duration="400" type="inback" /> <itemtemplate> <div class="TreeViewWrapper" onclick="StopPropagation" > <telerik:RadAjaxPanel runat="server" ID="SlaveAjaxPanel" > <telerik:RadTreeView OnNodeDataBound="SimpleTreeDownTree_NodeDataBound" runat="server" ID="SimpleTreeDownTree" OnNodeClick="NodeClicking" Width="411" Height="252" style="overflow-x:hidden; overflow-y:auto" > <Nodes> </Nodes> </telerik:RadTreeView> </telerik:RadAjaxPanel> </div> </itemtemplate> <expandanimation type="InBack"></expandanimation> <items> <telerik:RadComboBoxItem Text="" /> </items> <collapseanimation type="InBack"></collapseanimation> </telerik:RadComboBox>