I’ve datatable and form, binded together: $$(‘form’).bind(‘dataList’);
I’ve data collection:
var collection = new webix.DataCollection({
url:“tasks.php”,
save:“tasksAdd.php”
});
When I edit existing data in datatable with form and submit it, datatable trigger “UPDATE” event - everything going well, but when I want to add new data with form, after submitting the form, new data displays in datatable but no “INSERT” event going to the php script. Where is the problem.
Thank you very much!