In the previous Telerik MVC (pre Kendo), if you had editing (insert/edit) enabled and had a defined the following:
<other trid stuff>
.Editable( editing => editing
.Enabled((bool)true)
.Mode(GridEditMode.InLine)
.TemplateName("MyEditTemplate")
)
<rest of grid stuff here>
upon insert or edit, it would open up the MyEditTemplate below the grid row (like a detail template) and allow you to edit inline (not in the grid cells).
I'm trying to make this happen with Kendo for MVC - and it doesn't seem to work - it adds that blank row and puts the edit controls right in the grid cells.
Am I missing something or is this out of the box anymore in Kendo UI?
Thanks In Advance,
Rene.
<other trid stuff>
.Editable( editing => editing
.Enabled((bool)true)
.Mode(GridEditMode.InLine)
.TemplateName("MyEditTemplate")
)
<rest of grid stuff here>
upon insert or edit, it would open up the MyEditTemplate below the grid row (like a detail template) and allow you to edit inline (not in the grid cells).
I'm trying to make this happen with Kendo for MVC - and it doesn't seem to work - it adds that blank row and puts the edit controls right in the grid cells.
Am I missing something or is this out of the box anymore in Kendo UI?
Thanks In Advance,
Rene.