(originally reported by itcoreAndrew)
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<CompositeScript>
<Scripts>
<asp:ScriptReference Path="~/Scripts/jQuery/jquery-1.4.1.min.js"/>
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.core.min.js" />
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.accordion.min.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/Start.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/extended/ExtendedControls.js" />
</Scripts>
</CompositeScript>
</asp:ScriptManagerProxy>
When i remove
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/Start.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/extended/ExtendedControls.js" />
i can see my accordion back
when i include those, my accordion gone :(
==============================
Stephen_Walther wrote Feb 24 at 4:24 PM
Thank you for reporting this issue. We are investigating.
itcoreAndrew wrote Feb 6 at 2:43 AM
Workaround:
01 Put microsoft stuff on head
===
<link href="App_Themes/jQuery/ui/ui.core.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/jQuery/ui/ui.accordion.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/jQuery/ui/ui.theme.css" rel="stylesheet" type="text/css" />
<title>test</title>
<script src="Scripts/MicrosoftAjax/Start.js" type="text/javascript"></script>
<script src="Scripts/MicrosoftAjax/extended/ExtendedControls.js" type="text/javascript"></script>
=======
02. and scriptManagerProxy, no microsoft stuff
========
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<CompositeScript>
<Scripts>
<asp:ScriptReference Path="~/Scripts/jQuery/jquery-1.4.1.min.js"/>
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.core.min.js" />
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.accordion.min.js" />
</Scripts>
</CompositeScript>
</asp:ScriptManagerProxy>
==================
this way, on my case, i can use jQuery ui accordion and microsoft watermarked textBox
Comments: In the current v15.1 release of Ajax Control Toolkit, we have removed features from past releases, which were incomplete and experimental. This also applies to the so-called "jQueryzation". So, now jQuery is no more needed for Ajax Control Toolkit. You can load it manually if needed.
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<CompositeScript>
<Scripts>
<asp:ScriptReference Path="~/Scripts/jQuery/jquery-1.4.1.min.js"/>
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.core.min.js" />
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.accordion.min.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/Start.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/extended/ExtendedControls.js" />
</Scripts>
</CompositeScript>
</asp:ScriptManagerProxy>
When i remove
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/Start.js" />
<asp:ScriptReference Path="~/Scripts/MicrosoftAjax/extended/ExtendedControls.js" />
i can see my accordion back
when i include those, my accordion gone :(
==============================
Stephen_Walther wrote Feb 24 at 4:24 PM
Thank you for reporting this issue. We are investigating.
itcoreAndrew wrote Feb 6 at 2:43 AM
Workaround:
01 Put microsoft stuff on head
===
<link href="App_Themes/jQuery/ui/ui.core.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/jQuery/ui/ui.accordion.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/jQuery/ui/ui.theme.css" rel="stylesheet" type="text/css" />
<title>test</title>
<script src="Scripts/MicrosoftAjax/Start.js" type="text/javascript"></script>
<script src="Scripts/MicrosoftAjax/extended/ExtendedControls.js" type="text/javascript"></script>
=======
02. and scriptManagerProxy, no microsoft stuff
========
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<CompositeScript>
<Scripts>
<asp:ScriptReference Path="~/Scripts/jQuery/jquery-1.4.1.min.js"/>
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.core.min.js" />
<asp:ScriptReference Path="~/Scripts/jQuery/ui/minified/ui.accordion.min.js" />
</Scripts>
</CompositeScript>
</asp:ScriptManagerProxy>
==================
this way, on my case, i can use jQuery ui accordion and microsoft watermarked textBox
Comments: In the current v15.1 release of Ajax Control Toolkit, we have removed features from past releases, which were incomplete and experimental. This also applies to the so-called "jQueryzation". So, now jQuery is no more needed for Ajax Control Toolkit. You can load it manually if needed.