jquery - Ajax delete help -
I have 10 rows per line table I am using AJAX to delete records from the table. But when I remove a record, I am left with nine rows, which is not desirable.
How to maintain 10 rows per page (wherever applicable) after removal And with the offer I also do not want to refresh the page
Even if your data has been split it should be considered as a continuous list on different pages, Therefore, to find the next line (which will be the first line on the next page), take the steps through offset after the line removed and return it from AJAX response.
Comments
Post a Comment