Skip to content

5.3. Hiding & Showing

Evren Coşkun edited this page Jan 20, 2020 · 1 revision

Hiding & Showing the Row

With 0.8.5.1 version, hiding and showing any of row is pretty easy for TableView. For that several helper methods have been inserted on TableView.

  • To show a row:
    showRow(int row)
  • To hide the row:
    hideRow(int row)
  • To show all hidden rows:
    showAllHiddenRows()
  • TableView store a map that contains all hidden rows. This method for the time that is necessary to clear the list of hidden rows.
    clearHiddenRowList()
  • To check the visibility state of a row:
    isRowVisible(int row)

Hiding & Showing the Column

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.

  • To show a column:
    showColumn(int column)
  • To hide a column:
    hideColumn(int column)
  • To show all hidden columns
    showAllHiddenColumns()
  • TableView store a map that contains all hidden columns. This method for the time that is necessary to clear the list of hidden columns.
    clearHiddenColumnList()
  • To check the visibility state of a column:
    isColumnVisible(int column)