DataTables 2.0.0: Strange / inconsistent column width when using "rowGroup"

DataTables 2.0.0: Strange / inconsistent column width when using "rowGroup"

michaomichao Posts: 6Questions: 3Answers: 0

After upgrading to DT 2.0.0, column sizing together seems to be broken when using the rowGroup option. See the screenshow below (note I have set "border-spacing" here so it is possible to see the colspans).

The leftmost column is expanding more than needed, which leads to a line break in the rightmost column.

When removing the "rowGroup" option (or downgrading) the sizing works just fine and every row fits in a single line.

Answers

  • michaomichao Posts: 6Questions: 3Answers: 0

    In this example, I'm using "startRender", as you can see, and "endRender" is null.

    I just noticed: If I use "endRender" instead (so the group row is at the bottom of each group), the sizing of the columns is as expected / as it was pre 2.0.0.

    So maybe there is a problem in 2.0.0 when the first row does not contain data, but a group row.

  • allanallan Posts: 61,758Questions: 1Answers: 10,111 Site admin

    Are you able to give me a link to a page showing the issue please?

    Thanks,
    Allan

  • michaomichao Posts: 6Questions: 3Answers: 0
    edited February 19

    Yes, here: https://live.datatables.net/lutoniza/1/

    You need to make the window small enough to see the effect. If you make it small enough, even after a reload, the "Storno" column is way too large.

    Swapping "startRender" and "endRender" will fix the problem.

  • allanallan Posts: 61,758Questions: 1Answers: 10,111 Site admin

    To confirm, it is the cell misalignment that your example shows?

    I don't see that in the original image, but I can with the example - thank you for that. There is certainly something wrong there!

    It appears to be to do with the colspan used for the grouping row. Without that, the columns align correctly: https://live.datatables.net/lutoniza/2/edit .

    It must be something to do with the colgroup / col that I use for the column widths and interaction with a colspan in the body.

    Allan

  • michaomichao Posts: 6Questions: 3Answers: 0
    edited February 21

    Yes, the problem is the width of the columns. This column wastes a lot of space while the others are so small the content needs a second line. Note not always the same column is affected.

    This behaviour does NOT occur when:
    - Using DataTables 1.x OR
    - Not using the RowGroup plugin OR
    - Using "endRender" instead of "startRender"

  • juggle3207juggle3207 Posts: 1Questions: 0Answers: 0
    edited February 27

    Yes, the problem is the width of the columns.

    Does version 2.0.1 fix it for you? I tried 2.0.1, but the problem with the enlarged column remains (it's the same column as your example, the one before the last column).

    I'm using bootstrap 5, by the way.

    Ps: if I use "autoWidth: false", the column goes back to the correct width, but it seems it affects the centering of the elements (maybe CSS related?).

  • allanallan Posts: 61,758Questions: 1Answers: 10,111 Site admin

    No - 2.0.1 has no mitigation for this. I believe it is something to do with how browser's render a table when there is a colspan in the first row of a table.

    Allan

  • obijuan87obijuan87 Posts: 1Questions: 0Answers: 0

    Hi. I observed a similar oversizing of the first column when using "scrollY" together with RowGroup.

Sign In or Register to comment.