Header TH dont hide or show

Header TH dont hide or show

pmengopmengo Posts: 74Questions: 37Answers: 2
edited August 2018 in DataTables 1.10

This is the code

  if (d.value) {
                                            if (settings.aoColumns[col.idx].bVisible) {

                                                column.visible(false);
                                            }

                                        } else {
                                            if (!settings.aoColumns[col.idx].bVisible) {

                                                column.visible(true);
                                            }

                                        }

Column in table is hidden but header dont hide cell... and details dont show.
Apreciate your help

Answers

  • colincolin Posts: 15,158Questions: 1Answers: 2,587

    Hi @pmengo ,

    We're happy to take a look, but it would help, as per the forum rules, if you could link to a running test case showing the issue so we can offer some help. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

This discussion has been closed.