-
Enhancement
-
Resolution: Won't Fix
-
P4
-
8u40
When we declare an fx:id in our Controller, it has a type. Let's say you have:
@FXML private VBox root_vbox;
@FXML private Slider zoom_slider;
@FXML private Slider zoom_slider2;
It would a nice modification if the fx:id property pulldown showed all available fx:id's which match the selected node type (at the moment it shows all available fx:id's regardless of type).
In other words, if I have a Slider selected, then we would only show zoom_slider and zoom_slider2 in the list?
@FXML private VBox root_vbox;
@FXML private Slider zoom_slider;
@FXML private Slider zoom_slider2;
It would a nice modification if the fx:id property pulldown showed all available fx:id's which match the selected node type (at the moment it shows all available fx:id's regardless of type).
In other words, if I have a Slider selected, then we would only show zoom_slider and zoom_slider2 in the list?