Search
-
Weird dataTables Return
by kthorngren ·The JSON response looks like this: -
Pagination don't work by server side
by allan ·You need to send back the recordTotals and recordsFiltered parameters, as noted in the docs I linked to before. They tell DataTables how many records there are in the data set, and this it can work o… -
Pagination draw value wrong change when i click on paginate
by kthorngren ·How we can update the parameter in data tables, -
Property undefined ('nTr')
by allan ·Note no leading zero. (select button '2'). -
Table Data is shown, but paginator is not.
by kthorngren ·@nosnetrom -
I am using the example "nested.html". I have a need to modify some Editor buttons: Can't find them.
by allan ·What does joinnested.php look like? Does it look something a bit like this? -
Reload on change function
by kthorngren ·Your above code is not using server side processing however the response does provide the server side response. You are using jQuery ajax() to fetch the data. If you want server side processing the… -
Migrating to 2.0.0
by allan ·Now I've tried to use the option ajax, as a function that do the same stuff, but I don't know exactly how to give back the data to the dataTables -
the features is not working
by allan ·Use recordsTotal and recordsFiltered rather than iTotalRecords and iTotalDisplayRecords. See the documentation here. -
Im trying to do datatable server side processing pagination using cakephp anyone explain how to do?
by allan ·The fact that you are using CakePHP makes little to no difference to DataTables. As long as you respond with the JSON structure that DataTables expects, then it will work on any platform. -
ASP.NET MVC Paging Does Not Appear
by allan ·"recordsFiltered": 10, -
footerCallback: sum of pageTotal and total gives the same amount
by kthorngren ·You will need to calculate the total in your server side script and add the total to the JSON response for each draw. The standard response parameters are documented here. For example add something… -
Pagination kinda sorta works but total recordcount is not being received
by kthorngren ·Take a look at the expected return data for server side processing. Datatables is expecting recordsTotal and recordsFiltered with lower case r. You have RecordsTotal and RecordsFiltered. Correct t… -
Automatic translation of database values
by allan ·I don't know if Yajra works with SearchPanes and server-side processing. I don't recall having seen that before, but I might have just missed it. It seems likely that is the issue though. -
load static json data with recordstotal coming from server
by kthorngren ·Your code is confusing to me. Lets start by getting some basic information first. Most of your code is using Datatables 1.9 syntax but you also have some Datatables 1.10 API calls. I will assume y… -
Performance is not faster with Client side processing + defer Render
by kthorngren ·Guessing your recordsFiltered value is incorrect. Is it 10? If it is likely that is incorrect. See the Server Side Processing Returned Data docs for details of what should be returned. If you sti… -
Next button is disabled
by kthorngren ·You have server side. processing enabled but it doesn't sound like your server scrip tis following the Server Side Processing protocol. Datatables expects certain Returned data to know how much data… -
Ajax json request with limit and skip because of large data
by kthorngren ·Just make sure your server script returns the expected response data so datatables knows the number of records, etc. -
Serverside, localStorage, reload ajax withs params
by allan ·That suggests to me that all.php isn't returning the data that DataTables expects. -
Prerendered table is visible and rendering Datatable takes a bit too long
by kthorngren ·When you enable server side processing the server scrip tis responsible for performing the sort, searching and paging functions. None of these will work client side. The client side will send reque…