Dimitar,
Thanks that helps but when I assign a unique id I still get the same problem on all but the first page.
// addrow handler.
$(“#addrowbutton”).bind(‘click’, function () {
update_row_index = update_row_index + 1;
var add_id = ‘noid’ + update_row_index;
$(“#jqxgrid”).jqxGrid(“addrow”, add_id, {}, “first”);
for (i = 0; i < edited_rows.length; i++) {
edited_rows[i] = edited_rows[i] + 1;
}
});
update_row_index is a global.
Regards,
Scott