Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

241
Vistas
columnas de tablas de datos redimensionables [jquery]

Quiero cambiar manualmente el tamaño de una columna de columna de tabla.

busque en Stack Overflow y probé

Cómo hacer que las columnas de datatables.js sean redimensionables con jQuery UI y jQuery UI Resize with table and colspans

y ejemplo de google, documentación oficial.

https://github.com/dobtco/jquery-resizable-columns & http://jsfiddle.net/Twisty/ah67jopf/3/

mi código de ejemplo

 <table id="examTbl" class="table table-bordered table-hover table-sm dataTable dtr-inline" data-resizable="true"> <thead> <tr> <th><input type="checkbox" id="chkbox"></th> <th>1</th> <th>2</th> </tr> </thead> </table> <style> table, td, th { /*table-layout:fixed;*/ overflow:hidden; white-space: nowrap; text-overflow: ellipsis; } </style>

Configuración de tablas de datos

 var table_option = { processing: true, serverSide: true, searching: false, responsive: true, dom: "lfBtip", ajax: { url: '/get/textVal' }, columns: [{ data: 'null', defaultContent: "<input type='checkbox' class='chkbox'>", }, { data: 'test1' }, { data: 'test2' }, ], autoWidth: false, drawCallback: function(settings) { $('table th').resizable({ handles: 'e', minWidth: 18, stop: function(e, ui) { $(this).width(ui.size.width); } }); } }
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Creo que puede agregar la propiedad css "cambiar el tamaño" en sus estilos.

 <table id="examTbl" class="table table-bordered table-hover table-sm dataTable dtr-inline" data-resizable="true"> <thead> <tr> <th><input type="checkbox" id="chkbox"></th> <th>1</th> <th>2</th> </tr> </thead> </table> <style> table, td, th { /*table-layout:fixed;*/ overflow:hidden; white-space: nowrap; text-overflow: ellipsis; resize:horizontal; }

about 4 years ago · Juan Pablo Isaza Denunciar

0

Editar: intente agregar "autoWidth: false" en la configuración de su tabla de datos:

 var table_option = { processing: true, serverSide: true, searching: false, autoWidth: false, responsive: true, dom: "lfBtip", ajax: { url: '/get/textVal' }, columns: [{ data: 'null', defaultContent: "<input type='checkbox' class='chkbox'>", }, { data: 'test1' }, { data: 'test2' }, ], autoWidth: false, drawCallback: function(settings) { $('table th').resizable({ handles: 'e', minWidth: 18, stop: function(e, ui) { $(this).width(ui.size.width); } }); } }

Resuelto en este violín: http://jsfiddle.net/Twisty/ah67jopf/3/

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda