Răzvan Rotaru
Răzvan Rotaru
I am using 0.5.1-SNAPSHOT (0.5.0 didn't work at all for me, I can't remember now why). I am using `(ae/serve ...)` to start the server. I don't think that the...
I have tried but ended up in a "Can't eval locals" error. It's very likely you stumble upon the same error. Anyway, why not make it simple: if no operator...
One need I have is a reader which handles `JsDefined(null)` and `JsUndefined` differently. For example: ```scala case class Xyz(foo: Int, bar: Option[String], baz: Option[Int]) implicit val xyzReader = Json.reads[Xyz] val...
On Linuxes there is a `JavaFX` package which adds JavaFX to OpenJDK: https://packages.debian.org/stretch/libopenjfx-java I don't know exactly where they get their binaries, I haven't found an official Java FX 8...
Can you provide a more complete example of what you want to achieve? `defui` is built around event handling, so I think the solution will be to use `:fn-fx/include` to...
What problems did you encounter? There is nothing special about fn-fx in terms of running it with Cursive, you should be able to run it like any other clojure application....
Do we really have use cases where FXML is needed? For webapps the argument is that you have designers in your team, which ship HTML. I'm not sure this applies...
Then it makes sense, yes.
If the application crashes with no error message I would guess it's a platform issue in JavaFX. I do not encounter problems on Linux. However JavaFX 11 does not work...
I have the same problem with TreeView, and badly need at least a workaround. This is how it works in Java: ```Java treeView.getSelectionModel().selectedItemProperty().addListener( new ChangeListener() { @Override public void changed(ObservableValue...