Questions tagged [yajra-datatable]

Use this tag for questions relating to the Yajra DataTables package, which is used to support the creation of jQuery DataTables in Laravel projects.

The Yajra DataTables package supports the creation of jQuery DataTables in Laravel projects.

Specifically, it provides support for server-side implementations of DataTables.

Additional Resources

377 questions
0
votes
2 answers

Laravel Datatables pagination(when limit used on server side) issue

I have faced problem regarding datatables.I am working in laravel and used yajra/laravel-datatables-oracle package. In one of my product section, there are 100-200k records. When I hit my product listing, it will take lots of time to load because I…
sunil
  • 1
  • 1
  • 6
0
votes
1 answer

datatables laravel returned html element as a text

**Please find an attached pictures][1], the Laravel datatables are returning an html as text. I used rawColumns and escapeColumns but its not working.
0
votes
1 answer

Datatable service Yajra show blank

i want to add button in Yajra, so i read http://dt54.yajrabox.com/buttons/eloquent. Im following the step. But still show blank. nb. if im not using datatable service running well. Datatables class namespace App\DataTables; use App\employee; use…
Prabu Karana
  • 302
  • 1
  • 4
  • 15
0
votes
1 answer

Try to send html from controller Laravel and data tables

Summary of problem or feature request I want send to the table some HTML tags like I use editColumn to add some HTML code to this column its work with addColumn but not with editColumn the question is how I can send HTML elements to table from…
Mahdi Sahib
  • 120
  • 1
  • 9
0
votes
1 answer

Why pagination is not working with Yajra data tables in Laravel 5.2

I am loading a db table using Yajra datatables in Laravel 5.2. My table includes records above 50K, so the get() method takes a lot of memory. However, I use the paginate() method, an error occurs: BadMethodCallException in Macroable.php line 74: …
Ali Hamza
  • 97
  • 2
  • 9
0
votes
1 answer

@(at) syntax can't render in controller to view yajra datatables

i write @ syntax in addcolumn on return datatables, but @ syntax can't render in blade template, @ syntax only plaintext. how i can render @ syntax? this my code: http://pastebin.com/Sc2eG6us can any help me? thank you before
muzamil indra
  • 147
  • 3
  • 14
0
votes
1 answer

Laravel 5.4 Datatables plugin

I am trying to use yajara-laravel-database This is my controller public function index(Request $request){ $posts = Datatables::eloquent(Posts::query())->make(true); return View::make('dashboard.approval', compact('posts')); } This is my…
Alaksandar Jesus Gene
  • 6,523
  • 12
  • 52
  • 83
-1
votes
1 answer

Laravel Yajra Datatables searchable not working on desire column

I have datatables column as such: var showMasterUserTable = function () { masterIcon = $('#master_user_table').DataTable({ processing: true, serverSide: true, responsive: true, ajax: { …
Vicky Sultan
  • 73
  • 2
  • 15
-1
votes
1 answer

Yajra Datatable Date Range Filters

when i change date from date picker it hit ajax request but not filtering my data This my Lead Listing listing view where i am showing datatable: