Is it possible for us to hide fixgrid columns runtime and show whenver the user wants to using onEditColumns?
Because for now, what we did is showed all columns and the user will have to manually hide the not needed columns using onEditColumns, but its so cluttered especially when our table has a lot of columns.
...just use FIXGRIDListBinding.setColumnsequence("2;1")...
The value you pass is the semicolon-separated list of column indices to show - so it influences both the selection of columns and the sequence. So ("2;1") will show the third column first, then the second column - and no other. (counting starts at 0!).
You may check in demo workplace: Grids&Trees, COlumn Sequence and Width, Column Sequence & width.