Advertisement
Guest User

Untitled

a guest
Jan 1st, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. In FXML:
  2.  
  3. <ComboBox fx:id="operationSelector" styleClass="singleton-combo-box" GridPane.columnIndex="1" GridPane.rowIndex="1" />
  4.  
  5. In CSS:
  6.  
  7. .singleton-combo-box:disabled {
  8. -fx-opacity: 1.0;
  9. }
  10. .singleton-combo-box .list-cell:disabled {
  11. -fx-opacity: 1.0;
  12. -fx-text-fill: black;
  13. }
  14.  
  15. In Java:
  16.  
  17. @FXML private ComboBox<String> operationSelector;
  18.  
  19. @FXML
  20. private void initialize()
  21. {
  22. this.operationSelector.setDisable(true);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement