This question is locked. New answers and comments are not allowed.
Here is my call of the Grid, its very simple, but I can't seem to get it to work. It keeps raising
that EntryPointNotFoundException
<% Html.Telerik().Grid(Model)
.Name("GroupGrid")
.Columns(columns =>
{
columns.Bound(c => c.GroupId);
})
.Sortable()
.Pageable()
.Render();
%> Thanks for any help.