Arjay Angeles
Arjay Angeles
Need help on this one as I haven't used reactjs and can't replicate the issue. However, I am currently playing with VueJS and all seems to work fine along with...
Please provide some snippets to replicate the issue.
Sorry for the delays, but this feature is now implemented in v10.6. Thanks!
See https://datatables.net/blog/2022-06-22-vue. I was not able to use VueJS further with DataTables so I may not be able to answer this accurately. I think we should redirect the questions to...
Thank you for reporting, I think this is a valid concern when working with an existing database. I think `PDO::ATTR_CASE` is for the column casing and I currently use lowercase,...
Tagging for enhancement as this is currently not supported. The workaround is via column render for now.
@mariopro thanks for the info about width, not aware of it. You can already add a style using the magic method since Column is a Fluent class. But it would...
I suggest you do it via JS file. See https://github.com/yajra/laravel-datatables-vite/blob/main/js/index.js#L15 for ref.
Afaik, having SQL count is not supported by the framework inside a nested where clause. Workaround, include the having SQL on the query() method.
@OzanKurt I like the idea and this will definitely help in improving our eloquent performance. How about a `->processWith($model)` method? ```php public function dataTable($query): EloquentDataTable { $dataTable = new EloquentDataTable($query);...