Arjay Angeles
Arjay Angeles
Try using `exportFormat('₱#,##0.00')`. This is how I usually check Excel. 
I just tested this and it works fine for me: Id | Account UUID | Account Id | Member UUID | Balance | Date Created -- | -- | --...
Oh Laravel 9, I think `exportRender` is not available there. I suggest you check [Laravel Excel](https://laravel-excel.com/) on how to render/format a cell. Tested on Laravel 11 and works fine. I...
> Are you using Laravel Excel for this project @yajra? Yes but for small export only. However, for newer projects, I skipped Laravel Excel and moved to OpenSpout / fastexcel....
> Also, it terms of upgrading the package from `v9` to `v10` to `v11`, I think the documentation is no longer updated. > > https://yajrabox.com/docs/laravel-datatables/10.0/upgrade > > @yajra Thanks for...
None that I know of. The version change is mostly due to aligning to the Laravel Framework version.
Just call the draw event: ```js LaravelDataTables['table-id'].draw() ```
It seems you're using vite, inline scripts should be mostly a module type. You can also add the document ready if needed. ```js LaravelDataTables['productcategories-table'].draw(); ```
I think you need to call the script when dom is ready. The complete script should be something like: ```js $(function() { $('.btn-reload').on('click', function() { LaravelDataTables['productcategories-table'].draw(); }); })
I think this change will not execute the sequence syntax and will just return a string instead: ### Example raw SQL ```sql select 'users_id_seq.currval' as "id" from dual; ``` ###...