Skip to content

v0.8.5.5-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@evrencoskun evrencoskun released this 27 Jan 18:47
· 241 commits to master since this 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 column
    • hideColumn(int column) : To Hide the column
    • showAllHiddenColumns() : To show all hidden columns
    • clearHiddenColumnList() : 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 position
    • addColumn(int column, CH columnHeaderItemModel, List<C> cellItems) : To add new column to the position