Search
8347 results 2251-2260
Forum
- 23rd Sep 2018Several parameters in URL may kill browserIf your server script will support or can be configured to support it change from an HTTP GET request to HTTP POST is the best option. Here is an example: https://datatables.net/examples/server_side/post.html Kevin
- 22nd Sep 2018how to print the displayed rows?problem if your server script is not setup for
- 21st Sep 2018Pagination without using offsetsI don't follow, sorry. In that example, DataTables says I want 10 records, starting from position 20 - all DataTables is doing is requesting the information on the current page. It's entirely up to your script how you retrieve those records.
- 20th Sep 2018MYSQL My First DATAGrid DataTables Question.database), or any other script / program on the server-side
- 19th Sep 2018Error: Requested unknown parameterdo then your server script needs to support the
- 19th Sep 2018Successful MultiRow edit not drawing updated rowscould create a proxy script on the server side
- 18th Sep 2018"columns" property problemto create second serverside script and use it in
- 18th Sep 2018IE 11 Slow Renderingwith 333 records. My script receives the following parameters:
- 18th Sep 2018Showing 0 to 0 of 0 entries (filtered from NaN total entries)this case your server script is expected to handle
- 17th Sep 2018Reload DataTables after changeHello colin, thanks for your help. This is my script where i create the table: <script> $(document).ready(function() { $('#topdomains').DataTable( { "order": [[ 1, "desc" ]], "pageLength": 10, "bDestroy": true, "language": { "url": "https://domain.org/German.json" }, "bLengthChange": false, "columnDefs": [ { "targets": 4, "orderable": false, } ] } ); } ); </script>