Hi,
this is Gupta. In my project we use maximum 7different telerik controls and if i use all those in a single page. something like i attached the screenshot..
For Disabling embedded resources , I made EnableembeddedScripts='false" to all the telerik controls and i added the custom script path to the script manager for all the controls required as written below. I added all the scripts in proper order. but its giving problems.
If i do this way , Some controls (radgrid,DatePicker etc.,)are not functioning correctly.
<asp:ScriptManager ID="ScriptManager" runat="server">
<Scripts>
For Menu
<asp:ScriptReference Path="~/TelerikScripts/Common/Core.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/jQuery.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/jQueryPlugins.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/Navigation/NavigationScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/Menu/RadMenuScripts.js" />
</Scripts>
<Scripts>
For Multipage
<asp:ScriptReference Path="~/TelerikScripts/TabStrip/MultiPage/RadMultiPageScripts.js" />
</Scripts>
<Scripts>
For TabStrip
<asp:ScriptReference Path="~/TelerikScripts/Common/Scrolling/ScrollingScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/Navigation/NavigationScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/TabStrip/RadTabStripScripts.js" />
</Scripts>
<Scripts>
For DatePicker
<asp:ScriptReference Path="~/TelerikScripts/Input/TextBox/RadInputScript.js" />
<asp:ScriptReference Path="~/TelerikScripts/Input/DateInput/RadDateInputScript.js" />
<asp:ScriptReference Path="~/TelerikScripts/Calendar/RadCalendarCommonScript.js" />
<asp:ScriptReference Path="~/TelerikScripts/Calendar/RadCalendarScript.js" />
<asp:ScriptReference Path="~/TelerikScripts/Calendar/RadDatePicker.js" />
</Scripts>
<Scripts>
For Grid
<asp:ScriptReference Path="~/TelerikScripts/Grid/RadGridScripts.js" />
</Scripts>
<Scripts>
<asp:ScriptReference Path="~/TelerikScripts/Common/PopUp/PopUpScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/jQuery.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/jQueryPlugins.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/Animation/AnimationScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/Window/RadWindow.js" />
<asp:ScriptReference Path="~/TelerikScripts/Window/RadWindowManager.js" />
</Scripts>
<Scripts>
<asp:ScriptReference Path="~/TelerikScripts/Common/jQuery.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/jQueryPlugins.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/Animation/AnimationScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/Common/PopUp/PopUpScripts.js" />
<asp:ScriptReference Path="~/TelerikScripts/ToolTip/RadToolTip.js" />
<asp:ScriptReference Path="~/TelerikScripts/ToolTip/RadToolTipManager.js" />
</Scripts>
</asp:ScriptManager>
CAn u please help me in this regard.