Arjay Angeles
Arjay Angeles
Can you please provide snippets to reproduce the issue that is being fixed in this PR? Thanks!
Use the following: Search: https://yajrabox.com/docs/laravel-datatables/master/filter-column#main-content Order: https://yajrabox.com/docs/laravel-datatables/master/order-column#main-content
This is a known issue, and `filterColumn` is the current workaround, or via manual filter query. It would be great if we could detect and fix it. Thanks!
You can use the generic Field. Will also add this when I got the chance, haven't seen autocomplete yet. ```php Fields\Field::make('content')->type('autoComplete')->options([source => contentData])
It depends. If you're bundling, just add it in `app.js`.
Seems to be working fine using ^11  Please provide snippets to reproduce the issue. Thanks!
Can you provide some snippets to reproduce the issue? Are you using collection or query/eloquent builder?
JS looks fine, how about the php code?
It appears that you are using collection thus 4800 != 4,800. I suggest you query instead and let the package handle the pagination, search, sort, and counting. Something like: ```php...
I love the idea since this is what I am also doing now with the export functionalities via exportFormat and exportRender. And I think we should also consider the orderColumn...