Jarek Sacha
Jarek Sacha
_From [[email protected]](https://code.google.com/u/[email protected]/) on October 26, 2013 18:33:26_ JavaFX 8 now has an ArrayChangeListener interface (first noticed as of b113), which currently has no equivalent in ScalaFX 8. _Original issue: http://code.google.com/p/scalafx/issues/detail?id=106_
_From [[email protected]](https://code.google.com/u/[email protected]/) on October 26, 2013 18:13:29_ JavaFX 8 now has an ObservableFaceArray class (first noticed as of b113), which is a new subclass of ObservableIntegerArray. Furthermore, the type of...
_From [[email protected]](https://code.google.com/u/[email protected]/) on October 26, 2013 18:11:06_ JavaFX 8 now has an ObservableArrayBase class (first noticed as of b113), which is a new super class of ObservableArray. _Original issue: http://code.google.com/p/scalafx/issues/detail?id=104_
_From [[email protected]](https://code.google.com/u/105799865186689917261/) on September 09, 2013 12:40:54_ Altough ScalaFX uses wrappers and implicits to deliver a transparent way to code UIs, a ScalaFX control is not JavaFX control. It has...
_From [[email protected]](https://code.google.com/u/[email protected]/) on September 05, 2013 11:13:45_ The scalafx.scene.paint.PhongMaterial class has an auxiliary constructor that takes a number of Image arguments. However, its common for some, if not all, of...
_From [[email protected]](https://code.google.com/u/110928578011478007646/) on January 24, 2013 08:08:27_ When reviewing my own application code base for remaining FIXME and TODO, I got a few TODO markers from the ScalaFX core classes....
_From [[email protected]](https://code.google.com/u/107391621425733912885/) on December 13, 2012 23:23:15_ For instance, if an `ObjectProperty` has parameter type `scalafx.scene.paint.Color` it cannot be bound to `fill` property in `scalafx.scene.shape.Rectangle`. You will get compilation error:...
JavaFX `FXCollections` have some useful factory methods that are not available in ScalaFX `ObservableBuffer`, for instance: ``` java FXCollections observableArrayList(Callback extractor) ``` Creates an observable list that reports element updates....
_From [jpsacha](https://code.google.com/u/jpsacha/) on February 17, 2014 22:37:29_ There are situations where binding between properties holding primitive Java types does not work. There is an example of that in this StackOverflow...
_From [[email protected]](https://code.google.com/u/108906908085931332453/) on January 16, 2014 17:45:05_ Please refer to: http://docs.oracle.com/javafx/2/ui_controls/table-view.htm We need an easy way of supporting dynamic generation of table columns that are mapped to an arbitrary model....