Deleting selected Checkboxes in Datatables

Hi,

I have a datatable with checkboxes for which I want to delete the underlying records in MySQL database when I select the boxes/rows and hit the ‘delete’ button.

I was able to make it work with the .remove function. But when I reloaded the deleted rows came back. Of course these records were not deleted in my database.

Here I made a simple version of the datatable:
http://webix.com/snippet/55e1608a

Could somebody please help me do this?

Yep, the API of the component will work with client side UI only. You need to have a custom server-side scripts to alter a database.

In your snippet, clicking the Delete button sends correct request to the server side. You just need to have some kind of script there, that will do the actual job.

http://webix.com/snippet/ec7f1aa0