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

RadGrid filter issue when using EnableEmbeddedScripts propery

1 Answer 53 Views
ScriptManager and StyleSheetManager
This is a migrated thread and some comments may be shown as answers.
nirav
Top achievements
Rank 1
nirav asked on 15 Dec 2010, 10:47 AM
We are using Telerik Radgrid in our application. We identified that there are many js files which are getting loaded on the page when use the Telerik.Web.UI dll.  These js files are loaded as ScriptResource.axd reference files dynamically.

Since we are only using telerik Radgrid we decided to set the EnableEmbeddedScripts property to false. Hence we set the property in web.config as below:
             <appSettings>
                     <add key="Telerik.EnableEmbeddedScripts" value="false"/>
             </appSettings>

We also gave the script reference as below: Note that we are also using AJAXToolkit script manager, and it is not possible to remove that.

             <ajaxToolkit:ToolkitScriptManager ID="masterPageScriptManager" runat="server" AsyncPostBackTimeout="1200"
            EnableScriptGlobalization="true" ScriptMode="Release">
            <CompositeScript ScriptMode="Release">
                <Scripts>                   
                    <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" />                 
                </Scripts>
            </CompositeScript>
        </ajaxToolkit:ToolkitScriptManager>

After this settings we identified that all the functionality of Radgrid is working fine, except filter functionality.

Is there any other js file which we need to add in above Script tag ? Or is there any other specific configuration we need to do for fitler functionality ?

1 Answer, 1 is accepted

Sort by
0
Accepted
Simon
Telerik team
answered on 20 Dec 2010, 05:53 PM
Hi nirav,

In this case, you need to register the scripts of RadComboBox as well explicitly.

Please see this help article for more information about the various scripts used by RadControls.

Best wishes,
Simon
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
ScriptManager and StyleSheetManager
Asked by
nirav
Top achievements
Rank 1
Answers by
Simon
Telerik team
Share this question
or