Guest User

Untitled

a guest
Mar 8th, 2023
594
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#example").DataTable({
  2.     'responsive': true,
  3.     'autoWidth': false,
  4.     'searching': false,
  5.     'processing': true,
  6.     'serverSide': true,
  7.     'ajax': "{!! route('some-url') !!}",
  8.     'columns': [{
  9.         "data": "col1",
  10.         "name": "col1"
  11.     }, {
  12.         "data": "col2",
  13.         "name": "col2"
  14.     }, {
  15.         "data": "col3",
  16.         "name": "col3"
  17.     }, {
  18.         "data": "col4",
  19.         "name": "col4"
  20.     }, {
  21.         "data": "col5",
  22.         "name": "col5"
  23.     }],
  24.     'rowsGroup': ['col1:name', 'col2:name'],
  25.     'initComplete': function(settings, json) {
  26.         $('table td:nth-child(1), table td:nth-child(2)').addClass('css-colors');
  27.     }
  28. });
Advertisement
Add Comment
Please, Sign In to add comment