Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • First click selects the clicked row/cell. Second click edits the cell with the associated cell editor.
  • First click edits the clicked cell with the associated cell editor. No change in selection.
  • First click invokes the cell action represented with a hyperlink, icon, button or check box. No change in selection.
  • Mixed mode when the behavior depends on the cell content being clicked. E.g. if a drop down arrow is clicked it edits the cell; if a hyperlink is clicked it invokes an action; if a label is clicked it selects the cell.

Tree

The most left column in JavaFX TreeTable control shows a treeBy default, the tree is displayed in the left-most column, however, application developers are allowed to specify the column in which the tree is displayed..

A tree consists of nodes that can be opened and closed by interacting with a "turner" icon. The very first node in the tree is called root node and it is possible to hide it. Nodes that contain other nodes are called parents (these nodes have the "turner" icon); nodes that do not contain any other nodes are called leaf nodes (these nodes do not have the "turner" icon). Nodes can be opened by clicking on the "turner" icons or by double clicking the node name (note that if editing is enabled, double click will enter the edit mode).

...