Skip to content

Releases: edvin/tornadofx-controls

TornadoFX Controls 1.0.6

26 Oct 13:16
Compare
Choose a tag to compare
  • DateTimePicker updates when only time was changed (#7)
  • Synchronized feature set with TornadoFx (Kotlin)
    • fieldset orientation has been deprecated (now labelPosition)
    • fieldset now supports nested fields
    • fields now support orientation to allow for vertical growth
    • mneumonic support (setting labelFor) for field labels
    • added ButtonBarField

TornadoFX Controls 1.0.5

18 Aug 21:11
Compare
Choose a tag to compare
  • Changed NaviSelect to render as ComboBox with an additional button, the previous look confused people into thinking it was editable as a text field.

  • Use correct submit event for DateTimePicker
  • Minor improvements and bug fixes

TornadoFX Controls 1.0.4

05 Apr 08:07
Compare
Choose a tag to compare

Added

  • DatePickerTableCell

Usage:

TableColumn<S, LocalDate> column = new TableColumn<>();
column.setCellFactory(DatePickerTableCell.forTableColumn());

Optional support for converter that will be applied to both the TableView column text and the DatePicker textfield.

Take a look at the source code for implementation details.