This question is locked. New answers and comments are not allowed.
Hi.
I think i found a bug in ASP.NET MVC controls version 2010.1.309. Sorry if it was already been fixed - I have no access to the more recent versions to check.
So, if you have nested HTML table in some column of your grid item, it prevents correct ajax deleting (and probably editing) by returning a wrong item index in the "dataItem" function in telerik.grid.editing.min.js:
It counts not just grid table rows but also rows of all nested tables (if they are there). As a result deleting of the first row in the grid (with index 0) works fine, any other row or not going to be deleted (because there are no data item in the grid with obtained item index, causing Firebug show "data is undefined" error) or it's deleting some other row, which index is the same as wrong index returned by that code.
I think i found a bug in ASP.NET MVC controls version 2010.1.309. Sorry if it was already been fixed - I have no access to the more recent versions to check.
So, if you have nested HTML table in some column of your grid item, it prevents correct ajax deleting (and probably editing) by returning a wrong item index in the "dataItem" function in telerik.grid.editing.min.js:
| this.$tbody.find("tr:not(t-grouping-row)").index(m) |