Hi,
I have created an aspx page with a RadScheduler connected to a RadAjaxLoadingPanel and an accordion panel jQueryUI with
inside textbox fields.
When I do an operation on the RadScheduler (activating the panel load) to its completion, the panel jQueryUI does not work and I just have to refresh the page to reset it.
This is part of my page aspx
any idea to solve the problem?
I have created an aspx page with a RadScheduler connected to a RadAjaxLoadingPanel and an accordion panel jQueryUI with
inside textbox fields.
When I do an operation on the RadScheduler (activating the panel load) to its completion, the panel jQueryUI does not work and I just have to refresh the page to reset it.
This is part of my page aspx
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Path
=
"~/AreaRiservata/AdvancedForm.js"
/>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
/>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQuery.js"
/>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQueryInclude.js"
/>
</
Scripts
>
</
telerik:RadScriptManager
>
<
script
>
$(function () {
$("#accordion").accordion({
collapsible: true, active: true
});
});
</
script
>
<
script
src
=
"js/jquery-1.8.2.js"
></
script
>
<
script
src
=
"js/jquery-ui-1.9.1.custom.js"
></
script
>
any idea to solve the problem?