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.

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.

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

e.g.
table.getColumnNN("material").setCollapsed(false);
Regards,
Gleb
Thank you Gleb.