Hi,
I am currently using .php scripts to handle the loading/saving of data in my datatable. In php I am connection to SQL Server so the lastInsertRowId() does not work. I could re-query the table and return the new key but I’m not sure how I then pass this back to the datatable? I used the php scripts that come with the samples as a starting point.
At the moment I am doing a
.add(data);
.clearAll();
.load(<data_url>);
which does work but re-draws the whole grid on the page so not ideal from a UI point of view.
Thanks
Gary