cljfx

https://github.com/cljfx/cljfx
sundbp 2019-04-08T17:53:43.116500Z

@vlaaad happen to have any example of an editable table view around?

vlaaad 2019-04-08T18:14:32.116600Z

I decided not to do editable table views because I thought it should be better to implement it declaratively by changing description of a cell to be some input instead of relying on javafx's editable prop

sundbp 2019-04-08T18:37:54.117400Z

Ah. So put a text input inside a cell?

vlaaad 2019-04-08T19:19:19.117500Z

Oh, actually, there is an :editable prop, most have forgotten about it

vlaaad 2019-04-08T19:19:39.117800Z

As seen here

vlaaad 2019-04-08T19:21:08.117900Z

Try setting it to true in cell factory function? Sorry, not around a computer, can try

vlaaad 2019-04-08T19:24:01.118Z

I guess I just thought that it should not be used in idiomatic cljfx: view should be data-driven, and editable relies on local mutable state, but added it just for API coverage

lilactown 2019-04-08T22:33:37.119200Z

I thought I remembered reading somewhere how to package my app for win10 (when on mac)

lilactown 2019-04-08T22:33:52.119600Z

specifically, how to get the correct versions of JavaFX to put in the uberjar

lilactown 2019-04-08T22:33:59.119800Z

is that documented somewhere?