how to get all the edited rows from datatable

how to get all the edited rows from datatable or treetable all the rows that has changed cells or edited.

Component itself doesn’t track changed rows.
You can use events ( onAfterEditStop for example ) to collect info about changed rows.
Or you can use DataProcessor for data saving - http://docs.webix.com/desktop__dataprocessor.html

Thanks I used events. great solution.