i have a datatable with the “select” column.
After i select lets say 10 “rows” i hit the “Delete” button and i would like those rows be deleted in backend DB.
In my app i dont use DataProcessor, i only use simple “webix.ajax().post()” calls.
Now i know how to delete a single row (by passing a parameter to my “webix.ajax().post(url, {id: product1}, function(text, data){//callback code});” function. But what if i want to delete 500 rows?
Should i call this POST request 500 times or should i implements this in some other way?
actually i found out that the getSelectedId does not work for “checkboxes”. I have a column with checkboxes and after i select lets say 10 of them (each in its own row) and hit the Delete button, the getSelectedId only returns 1 ID.