Is there any way to access and remove the Scroll Bar in JavaFX ControlsFX when building a Autocomplete Textfield with autoCompletionBinding?
Asked
Active
Viewed 55 times
0
-
Please provide enough code so others can better understand or reproduce the problem. – Community Jun 01 '22 at 17:57
1 Answers
0
You can hide it using CSS:
.auto-complete-popup .list-view .scroll-bar:vertical {
-fx-scale-x: 0;
-fx-pref-width: 0;
}

Ali Al-kubaisi
- 55
- 3