Draw Counter
Since the table sends asynchronous requests, the received response might not correspond to the latest request. To solve this problem you can employ the `useDrawCounter` option like so:
This will add an incrementing draw
parameter to the each request. On the server-side you should return this parameter with the response, using the same draw
key. E.g in Laravel:
The table will then compare the response draw
value with its own draw
counter and only process the response if the two match.
Last updated