Answers for "jquery datatable width 100"

4

datatables change width of columns

$('#example').dataTable( {
  "autoWidth": false, // might need this
  "columns": [
    { "width": "20%" },
    null, // automatically calculates
    null  // remaining width
  ]
} );
Posted by: Guest on September-08-2020
0

change height of row at JTable

table.setRowHeight(20);
Posted by: Guest on July-01-2021

Code answers related to "jquery datatable width 100"

Code answers related to "Javascript"

Browse Popular Code Answers by Language