This question is locked. New answers and comments are not allowed.
I am using Telerik extension of Grid for asp.net mvc. As shown in the demo of Grouping(http://demos.telerik.com/aspnet-mvc-beta/grid/grouping)
I have written :-
I have written :-
.Groupable(settings => settings.Groups(groups =>groups.Add(o => o.Customer.ContactName))
But the functionality of Expand-Collapse on clicking the Contact name is not available.
I have written
<% Html.Telerik().ScriptRegistrar()
.DefaultGroup(group => group
.Add("telerik.examples.js")
.Compress(true))
.OnDocumentReady(() => { %>prettyPrint();<% })
.Render(); %>
in the Site.Master.
Am I missing reference to any .js file??
What could be the problem?