Thanks Erel. However, that form orientation change affects all the controls added to it.
For my B4J application, however, I want to conditionally change the position of only a single listview's vertical scrollbar.
As such, I've tried to set this listview's ID to a class ("LeftLV") defined in my main form's override CSS, in these 2 different ways:
#LeftLV .scroll-bar:vertical {
-fx-direction: rtl;
}
and
#LeftLV .scroll-bar:vertical {
-fx-alignment: LEFT;
}
but neither definition worked (and debug console yielded no errors).
Other suggestions?