colspan of empty row when 1 or more column hidden
colspan of empty row when 1 or more column hidden
webgengiskhan
Posts: 1Questions: 0Answers: 0
Hi,
when i have a column with the property bVisible to false
and no row to display i have a bad colspan on the empty row cell.
i replaced
in the function _fnDraw( oSettings )
...
nTd.colSpan = _fnVisbleColumns( oSettings );//oSettings.aoColumns.length;
...
the correction fixed my problem. dont know if it cause any other bug for now :)
Martin Hebert
when i have a column with the property bVisible to false
and no row to display i have a bad colspan on the empty row cell.
i replaced
in the function _fnDraw( oSettings )
...
nTd.colSpan = _fnVisbleColumns( oSettings );//oSettings.aoColumns.length;
...
the correction fixed my problem. dont know if it cause any other bug for now :)
Martin Hebert
This discussion has been closed.
Replies
Thanks,
Allan