Trouble using fixedColumn if contain colspan/rowspan
Trouble using fixedColumn if contain colspan/rowspan
Link to test case: https://live.datatables.net/huyonesa/1/
Description of problem: Hello, I have an issue with DataTables since v2. I want to fix two columns at the beginning of the table, but these columns can have a colspan of 2 or a rowspan greater than 1.
For row with colspan, 3rd col is stick and 'left' value is equal to col 1 width
For row with rowspan=2, first row is OK, but on second row col 2 and 3 are stick, first is ignored.
An example would be more illustrative : https://live.datatables.net/huyonesa/1/
Answers
You can't have a
colspan
orrowspan
in thetbody
of a DataTable. I'm sorry to say that it isn't supported at all. It will work in thethead
, but not at all in thetbody
.Allan
Thanks for reply.