0

Is there any way to access and remove the Scroll Bar in JavaFX ControlsFX when building a Autocomplete Textfield with autoCompletionBinding?

enter image description here

mori
  • 11

1 Answers1

0

You can hide it using CSS:

.auto-complete-popup .list-view .scroll-bar:vertical {
-fx-scale-x: 0;
-fx-pref-width: 0;

}