All Questions
Tagged with laravel-datatables jquery
4 questions
2
votes
0
answers
32
views
Including Current Date in Header of Exported DataTable in Laravel DataTables
I am using Laravel with the Laravel DataTables package. I have added the export button to the DataTable, but I need to include the current date at the top of the page
var dtconfig = {
dom:
...
0
votes
2
answers
2k
views
Format date column in datatables
i need format date in my datatable column, i´m reading documentation, but i don´t know how i can to do it.
i have this code for create my datatable:
var callTable = $('#calls').DataTable({
dom:...
1
vote
0
answers
3k
views
yajra datatables keep index column on search
I have a data collection and I have added a column with index:
BACKEND:
Route::get('user-data', function() {
$model = App\User::query();
return DataTables::eloquent($model)
-&...
0
votes
1
answer
2k
views
ColReorder is not working in Responsive DataTables?
I have DataTables and implemented the colReorder by dragging the checkbox element using .sortable() jquery-ui and everything is fine. But when I enable responsive:true the column is not ordering any ...