A quick question, how can I hide the "Show All Hidden Columns" menu item that shows on the header of a Sortable table? I tried different things but didn't work. After I hide the Connection Id and Results Id, I don't want to let the user show them by selecting the "Show All Hidden Columns" menu item. The code and classes I'm using are:
- Code: Select all
- TableHeaderPopupMenuInstaller installer = new TableHeaderPopupMenuInstaller(
 this.table);
 installer
 .addTableHeaderPopupMenuCustomizer(new AutoResizePopupMenuCustomizer());
 TableColumnChooserPopupMenuCustomizer tableColMenuCustomizer = new TableColumnChooserPopupMenuCustomizer();
 tableColMenuCustomizer.setHiddenColumns(new int[] { connectionIdColIndex,
 resultIdColIndex });
 
 installer.addTableHeaderPopupMenuCustomizer(tableColMenuCustomizer);
Thanks,
SKS



