Plugin any-number
Plugin any-number
In my project, I use the "any-number" plugin:
https://datatables.net/plug-ins/sorting/any-number
It works great!
But, I noticed that with a table that works on the principle of data processing "server-side" - the plugin does not work. Is this normal? I didn't find anything in the plugin description text.
This question has an accepted answers - jump to answer
Answers
The plugins work when using client side processing. The plugins aren't used with server side processing as the server side script is expected to gather the appropriate data for the page to send to the client. You will need to replicate the plugin behavior in your server script. Or decide if you really need server side processing. Maybe client side will work with the amount of data you have.
Kevin
Understood, thank you.