This question is locked. New answers and comments are not allowed.
Hello,
I'm trying to get a selectable() property functioning for the Telerik Grid in MVC 2.0. Currently it doesn't work.
The following is my code.
01.Html.Telerik().Grid<Ability>() 02. .Name("Role Abilities Grid") 03. .BindTo((IEnumerable<Ability>)Model) 04. .DataKeys(k => k.Add(a => a.AbilityId)) 06. .Columns(c => 07. { 08. c.Template(a => { %> <input type="checkbox"/> <% }).Width(30).Title("Select"); 09. c.Bound(a => a.Name).Width(100); 10. c.Bound(a => a.AbilityId).Width(50); 11. c.Bound(a => a.Description).Width(300); 12. }) 13. .Scrollable() 14. .Sortable() 15. .Selectable() 16. .Render();The Grid renders, is sortable and has a scrollbar, however is not selectable.
In site.master the code is
1.<% Html.Telerik().StyleSheetRegistrar() 2. .DefaultGroup(group => group 3. .Add("~/Content/2010.3.1110/telerik.common.min.css") 4. .Add("~/Content/2010.3.1110/telerik.windows7.min.css")) 5. .Render(); 6.%> 7. 8.<%= Html.Telerik().ScriptRegistrar() %>Which file is responsible for selectable() property? What do I need so that this selectable() property works?
Any help would be appreciated. Thanks.