Table - setting ColumnCollapsed - V7

Hi
Noticed that the table column Collapse has been Deprecated in the platform 7 and didn’t find any alternate to this in the documentation. I might have missed or may have a different approach. Thanks for any help.

image

Hi,

As JavaDoc says, you can use Table.Column#setCollapsed instead.

image

e.g.

table.getColumnNN("material").setCollapsed(false);

Regards,
Gleb

Thank you Gleb.