This question is locked. New answers and comments are not allowed.
I'm testing out the grid for InCell Editing but unfortunately I can't make it to work, Cell clicking don't work. I tried also to make just a simple Grid but still no luck on InCell Editing. Can you spot why It's not working? Thank you.
<%= Html.Telerik().Grid<ViewModel>()
.Name("AttributeGrid")
.Editable(editing => editing.Mode(GridEditMode.InCell))
.Columns(col =>
{
col.Bound(x => x.modelId).Hidden(true);
col.Bound(x => x.modelDesc);
col.Bound(x => x.modelValue);
})
.DataBinding(binding => binding.Ajax().Select("GetModel", "Grid")
.Update("Update", "Grid"))
%>
<%= Html.Telerik().Grid<ViewModel>()
.Name("AttributeGrid")
.Editable(editing => editing.Mode(GridEditMode.InCell))
.Columns(col =>
{
col.Bound(x => x.modelId).Hidden(true);
col.Bound(x => x.modelDesc);
col.Bound(x => x.modelValue);
})
.DataBinding(binding => binding.Ajax().Select("GetModel", "Grid")
.Update("Update", "Grid"))
%>