Answers for "change width of datatable column jquery"

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
2

columndefs in datatable not working while setting width jquery

autoWidth: false
Posted by: Guest on June-30-2020

Code answers related to "change width of datatable column jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language