tornadofx2
tornadofx2 copied to clipboard
TornadoFX 2.0
```kotlin class TestClass1: JsonModel{ val dataProperty = SimpleObjectProperty() var data by dataProperty override fun updateModel(json: JsonObject) { with(json) { data = jsonModel() } } } class TestClass2: JsonModel{ // ......
tornadofx1 states in the readme it is not anymore maintained. tornadofx2 commit history looks similar. So is this repo still maintained? And if so maybe link from v1 to here
I'm using the DefaultErrorHandler Class to automatically show the content of otherwise uncatched exceptions. But the text area is always empty, due to the commented out line `//e.printStackTrace(writer)` in the...
I have been working on an application for use during brainsurgery using this amazing framework for about a year now. BUt I have now encountered an issue that I have...
I have the following code that displays a table column. setWrapText is ignored entirely and using enableTextWrap sets the text to black regardless of any CSS or any behaviors like...
I tried [TableViewEditModel example](https://docs.tornadofx.io/0_subsection/11_editing_models_and_validation#tablevieweditmodel) from the [TornadoFX Guide](https://docs.tornadofx.io/) with tornadofx2, and when I try to edit a cell (double click in a cell, edit value, Enter), it throws the following...
The code at question is at `TableView.kt`, around line ~148: ```kotlin fun TableColumn.converter(converter: StringConverter): TableColumn = apply { cellFormat(FX.defaultScope) { text = converter.toString(it) } } ``` It requires that the...
Based on issue #44.
When running `TableViewTest.kt`, a screenshot of a table is saved into the project: ```kotlin robot.robotContext().captureSupport.saveImage(robot.capture(primaryStage.scene.root).image, Paths.get("example-table.png")) ``` Just wanted to check whether this is intentional (although I see no purpose...