Hello
I'm using scrollview and cellediting extensions.
On the onBeforeCellEdit(index,field) I have this code:
var row = $(this).datagrid('getRows')[index];
alert(row);
problem is - 'row' return object value only on first 99 rows(on current page) - and for row's below that it returns 'undefined'.
Question is - how to get row value (for selected cell) when clicking on cell on any page?
Thank you.