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

[Solved] GridEditMode.InCell Problem

0 Answers 35 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Wonderer
Top achievements
Rank 1
Wonderer asked on 15 Oct 2011, 09:39 PM
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"))

    %>
Tags
Grid
Asked by
Wonderer
Top achievements
Rank 1
Share this question
or