Hola
JavierB,
antetodo gracias por la respuesta! ya me habia fijado en ese ejemplo pero usa CSS para definir el tamaño de las columnas, el ya sabe q tiene 3 y le inserta los tamaños correspondientes
Código:
* define width of TH elements: 1st, 2nd, and 3rd respectively. */
/* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors */
html>body thead.fixedHeader th {
width: 200px
}
html>body thead.fixedHeader th + th {
width: 240px
}
html>body thead.fixedHeader th + th + th {
width: 316px
}
/* define width of TD elements: 1st, 2nd, and 3rd respectively. */
/* All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors */
html>body tbody.scrollContent td {
width: 200px
}
html>body tbody.scrollContent td + td {
width: 240px
}
html>body tbody.scrollContent td + td + td {
width: 300px
}
en mi caso nunca ser el numero de columnas q voy a tener... entonces como hago para q cuadre la columna de la cabecera con la columna de las lineas?
Editado: Has probado usar el codigo en IE - 7????? no sale el contenido de las filas!
saludos y gracias!!!