HI
I have found a problem about field name in edit mode.
incell mode - edit event :
var grid = e.sender;
var index = e.container.index();
var field = grid.columns[columnIndex].field;
without locked column, the field name is correct :
Click Column2 - index 1 field "Column2" <-- CORRECT
HiddenColumn Column1 Column2
0 1
but with locked column, the index is wrong, because locked column always
place in the first of the grid.columns collection and get the wrong field :
Click Column2 - index 1 field "HiddenColumn" <-- WRONG
Column1(Locked) HiddenColumn Column2
0 1
Is there have any solution or fixed in the newest release ?
*Visual Studio 2015 Enterprise Update 3
*UI for ASP.NET MVC Q2 2016(kendo\2016.2.504)
Best regards
Chris