“DataTable Dar ancho predeterminado a Colums” Código de respuesta

DataTables Cambiar el ancho de las columnas

$('#example').dataTable( {
  "autoWidth": false, // might need this
  "columns": [
    { "width": "20%" },
    null, // automatically calculates
    null  // remaining width
  ]
} );
Chris PA

Ancho de columna de datos data

columnDefs: [
            { width: 200, targets: 0 }
        ],
Pleasant Puma

columna de ancho data

table.display {
  margin: 0 auto;
  width: 100%;
  clear: both;
  border-collapse: collapse;
  table-layout: fixed;         // add this 
  word-wrap:break-word;        // add this 
}
Clear Cheetah

DataTable Dar ancho predeterminado a Colums

$('#table_selector').dataTable( {
  "autoWidth": false, //<-------- add this
  //give custom width
  "columns": [
    { "width": "10%" },
} );
mukashwasti_

Respuestas similares a “DataTable Dar ancho predeterminado a Colums”

Preguntas similares a “DataTable Dar ancho predeterminado a Colums”

Más respuestas relacionadas con “DataTable Dar ancho predeterminado a Colums” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código