'm using jquery datatables with the jeditable plugin. These are the options of my datatable
and My jeditable column options
When checking the network, "javaServlet" is being called again after the update is done
How can I fix this?
Thank you
options = { "bServerSide" : true, "sAjaxSource" : "/javaServlet", "bProcessing" : true, "sPaginationType" : "full_numbers", "bJQueryUI" : true };
and My jeditable column options
options = { placeholder : '', fnOnCellUpdated : function(sStatus, sValue, settings) { recordUpdated(); } };The problem is when i edit a value in the 4th page for example, the datatable updates and reloads and sends me back to the first page.
When checking the network, "javaServlet" is being called again after the update is done
How can I fix this?
Thank you