Datatable
Datatable copied to clipboard
This is a laravel 4 package for the server and client side of datatables at http://datatables.net/
need to check if the value of a column is negative and at the time of exporting to PDF, and if so, make that whole cell turn red or text-decoration:...
Good day! How can I add a sum total value on to footer using ->setCallBacks method; I tried copy/paste the code from: http://datatables.net/examples/advanced_init/footer_callback.html But it doesnt show anything, here's How...
I have a modal that contains search button, when the user opens the modal and click search button, it calls an ajax to get data from the database in PHP...
Hi Thanks a lot for an awesom package for laravel. I would like to know is there any possibility to add checkbox field where one can select multiple data and...
Now i'm working on load data and show to datatable. but now i have 265 records but it's very slow. I'm using MYSQL AURORA in AWS SERVER. Thank you for...
Any idea of adding gif loader in chumper data-table while searching in the search box. If the data are like 10000 it takes while to be fetched and the user...
Hi team, Is it possible to fuse chunk or pagination in a chumper datatable collection method to speed up the collection engine as the collection engine has more features than...
Data retrieval works: ``` public function getFichesDataTable() { $selection = DB::table('vouchers as v') ->join('companies as c', 'v.company_id', '=', 'c.id') ->select('v.id as id', 'v.name as name', 'c.name as company'); $collection =...
Hi-every one as you guys know that there is a export option in data-table core api https://datatables.net/extensions/buttons/examples/html5/simple.html I want same functionality in Chumper but haven't found any option for export...
I'm using Laravel 5 for the first time and am using this plugin to pull data from a MySQL database. The following code sits inside my controller: ``` return Datatable::collection(Invoice::all(array('id','date_issued','date_due','user_id','total','status')))...