Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide a column in JXTable?

I'm using a JXTable and I want to programmatically hide a column.

Is there any convenient methode to do this (without setting miniman/maximal/preferd width) ?

Thanks.

like image 741
isoman Avatar asked Oct 11 '25 15:10

isoman


1 Answers

Get the TableColumnExt for the relevant column from the JXTable, and call setVisible() on that.

like image 114
Brian Agnew Avatar answered Oct 14 '25 06:10

Brian Agnew