v0.8.5.5-alpha
Pre-release
Pre-release
NewFeature:
- With 0.8.5.5 version, hiding and showing any of column is pretty easy for TableView. For that several helper methods have been inserted on TableView.
showColumn(int column)
: To show the columnhideColumn(int column)
: To Hide the columnshowAllHiddenColumns()
: To show all hidden columnsclearHiddenColumnList()
: TableView store a map that contains all hidden columns. This method for the time that is necessary to clear the list.isColumnVisible(int column)
: To check state of column
- TableView Adapter (AbstractTableAdapter) has some helper methods. These are;
List<C> getCellColumnItems(int column)
: To get All Cell items that is located on the column position.removeColumn(int colum)
: To remove all items that is located on the column positionaddColumn(int column, CH columnHeaderItemModel, List<C> cellItems)
: To add new column to the position