Unmark rows function?

Hi,

is there a function (in v2.5 or now in v2.6) like unmarkAll() to unmark all selected rows?
Or other: Is a row is marked to delete but not saved how can i unmark all this rows?

Kind regards, Carsten

There is no method to unselect necessary row. You can unselect only all rows in grid:

mygrid.clearSelection();

If row is marked as deleted you can undo this with following code:

dp.setUpdated(rowId,false)

where dp - instance of DataProcessor