Hi,
I have a full working row-editable grid +sort + filter + php+ mssql (Microsoft SQL).
But after sorting on a column the ID stay at the same row
Example;
Grid on load (4 column : id, first, second, third):
1 a aa aaa
2 b bb bbb
3 c cc ccc
After sorting ASC/DESC column 2
3 c cc ccc
2 b bb bbb
1 a aa aaa
All seems ok but the first row still have ID 1, second is 2 , third is 3
So in the background it is:
1 c cc ccc
2 b bb bbb
3 a aa aaa
So if I delete row 3, record c will be deleted.
I dont have the problem with rowediting. I think it must have something to do with :
$("#deleterowbutton").bind('click', function () {...
Sorry for my bad english…
Thank you.