laravel4-datatables-package icon indicating copy to clipboard operation
laravel4-datatables-package copied to clipboard

Server-side handler of DataTables Jquery Plugin for Laravel 4

Results 43 laravel4-datatables-package issues
Sort by recently updated
recently updated
newest added

I am having some issues with allowing the user to reorder the columns and having column filtering work at the same time. I am currently using the code that is...

wontfix

Greetings, I'm encountering an issue with Datatables. No mater what columns I select, the output in aaData block is duplicated for each element. Code used: ``` $users = User::select('users.id', 'users.username',...

wontfix

I am not able to get all the results only the last one here is what I have in the controller ``` php DB::table('vendor') ->join('contractor_category_vendor', 'contractor_category_vendor.vendor_id', '=', 'vendor.id') ->join('contractor_category', function($join)...

wontfix

Hi. I would like to check whether is it possible to merge data from more than 1 table in a datatable. Eg: - leave table having column: Employee Name, Leave...

wontfix

I am new for this package. I try test, and then it is show: ` HTTP/1.0 200 OK Cache-Control: no-cache Content-Type: application/json Date: Thu, 20 Nov 2014 04:00:03 GMT {"sEcho":0,"iTotalRecords":28,"iTotalDisplayRecords":28,"aaData":[[1,"super","cpanel"],[2,"Admin","cpanel"],[3,"Test","sample"],[7,"Loan","loan"],[8,"asd","sample"],[9,"dsfasdf","sample"],[10,"fdg","loan"],[11,"dsfgdfsg","sample"],[12,"fdgsfg","loan"],[13,"fgfg","loan"],[14,"dfa","sample"],[15,"fdgfd","sample"],[16,"dffs","loan"],...

wontfix

Laravel 4.1 bllim/datatables 1.4.1 PHP version is : 5.3.10 This is exception i am getting, {"error":{"type":"Symfony\Component\Debug\Exception\FatalErrorException","message":"Cannot access protected property Bllim\Datatables\Datatables::$input","file":"\vendor\bllim\datatables\src\Bllim\Datatables\Datatables.php","line":565}} This is js code, var table = jQuery('#announcements').dataTable({ "processing": true,...

wontfix

I'm having issues using group_concat with datatables. The query runs perfectly and the results are shown as expected. The problem appears when I do a search. When using aggregate functions,...

bug
enhancement

Hello people. I reviewed all issues that exists for this package and came to some conclusions. In my opinion these are things that should be fixed / developed in next...

I got a column(s) not found on prefixed table whenever I preform filtering on dataTables. I dig into the code and I think I found a little bug that caused...

By default only 10 rows were shown in the paging function.Fixed the issue to show all rows if all selected.