This is a migrated thread and some comments may be shown as answers.

RadScript Manager and AjaxControlToolKitScriptManager Compatability Problems

3 Answers 90 Views
ScriptManager and StyleSheetManager
This is a migrated thread and some comments may be shown as answers.
Ravi
Top achievements
Rank 1
Ravi asked on 08 Aug 2014, 02:49 PM
I'm creating a  application using AjaxControlToolKit 4.5 and Telerik Controls .  I have noticed  strange issues.

1) When Latest AjaxControlToolKitScriptManager  is referenced in page and I have taken a Telerik numeric control  and set  HoveredStyle-BackColor="Wheat" to  it . Control is not able to load color when Hovered on it. But it is loading when I'm using RadScriptManager.

2) When I have referenced RadScriptManager  in page and With Latest AjaxControlToolkit reference to project  Filter Functionality in RadGrid is not working.


Please help on this.

3 Answers, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 13 Aug 2014, 10:34 AM
Hi Ravi,

Please look here:
http://www.telerik.com/forums/are-radcontrols-compatible-with-standard-ajax-control-toolkit-3-5

http://www.telerik.com/forums/ajax-control-toolkit-compatability

http://www.telerik.com/forums/making-telerik-and-ajax-control-toolkit-play-nicely-together

Regards,
Hristo Valyavicharski
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Ravi
Top achievements
Rank 1
answered on 14 Aug 2014, 01:29 PM
Yeah , I tried this by adding files to script Reference to AjaxControlToolKitScriptManager

<asp:ScriptReference Path="~/JavaScript/Telerik/Core.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/Ajax.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/jQuery.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/jQueryPlugins.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadGridScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/GridCellSelection.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/TouchScrollExtender.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/OverlayScript.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/NavigationScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/AnimationScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadComboBoxScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadMenuScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadContextMenuScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadFilterScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadMenuItem.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadAutoCompleteBoxScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/PopUpScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadToolTipScripts.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadToolTipManager.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadInputScript.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadDateInputScript.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadCalendarCommonScript.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadCalendarScript.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadDatePicker.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadPickersPopupDirectionEnumeration.js"/>,
                <asp:ScriptReference Path="~/JavaScript/Telerik/RadInputManagerScript.js"/>

and In web.Config I mentioned Following key
 <add key="Telerik.EnableEmbeddedScripts" value="false"/>

I'm getting issue like Reference : telerik is not defined


0
Hristo Valyavicharski
Telerik team
answered on 19 Aug 2014, 11:39 AM
Hi Ravi,

Try to set the CombineScripts property to false:

        <ajaxToolkit:ToolkitScriptManager runat="server" ID="ScriptManager1" CombineScripts="false" EnableCdn="false">
            <Scripts>
                <asp:ScriptReference Path="~/Scripts/Common/Core.js" />
                <asp:ScriptReference Path="~/Scripts/Ajax/Ajax.js" />
                <asp:ScriptReference Path="~/Scripts/Common/jQuery.js" />               
                <asp:ScriptReference Path="~/Scripts/Common/jQueryPlugins.js" />               
                <asp:ScriptReference Path="~/Scripts/Grid/RadGridScripts.js" />
                <asp:ScriptReference Path="~/Scripts/Grid/GridCellSelection.js" />
                <asp:ScriptReference Path="~/Scripts/Common/TouchScrollExtender.js" />
                <asp:ScriptReference Path="~/Scripts/Common/Navigation/OverlayScript.js" />
                <asp:ScriptReference Path="~/Scripts/Common/Navigation/NavigationScripts.js" />
                <asp:ScriptReference Path="~/Scripts/Common/Animation/AnimationScripts.js" />
                <asp:ScriptReference Path="~/Scripts/ComboBox/RadComboBoxScripts.js" />
                <asp:ScriptReference Path="~/Scripts/Menu/RadMenuScripts.js" />
                <asp:ScriptReference Path="~/Scripts/Menu/ContextMenu/RadContextMenuScripts.js" />
...

I hope this helps.

Regards,
Hristo Valyavicharski
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
ScriptManager and StyleSheetManager
Asked by
Ravi
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Ravi
Top achievements
Rank 1
Share this question
or