Answers for "datatable first column width"

0

datatable column width

columnDefs: [
            { width: 200, targets: 0 }
        ],
Posted by: Guest on July-20-2020
0

datatable width column

table.display {
  margin: 0 auto;
  width: 100%;
  clear: both;
  border-collapse: collapse;
  table-layout: fixed;         // add this 
  word-wrap:break-word;        // add this 
}
Posted by: Guest on February-10-2021
0

datatable giving default width to colums

$('#table_selector').dataTable( {
  "autoWidth": false, //<-------- add this
  //give custom width
  "columns": [
    { "width": "10%" },
} );
Posted by: Guest on July-13-2021

Code answers related to "datatable first column width"

Code answers related to "Javascript"

Browse Popular Code Answers by Language