Wish Listview.scrollTo

jmon

Well-Known Member
Licensed User
Longtime User
Hello,

I think the listview control is missing this : http://docs.oracle.com/javafx/2/api/javafx/scene/control/ListView.html#scrollTo(int)
It is much better than using SelectedIndex. If you have time to add this to the next update, it would be awesome!

Thanks
Jmon.

[EDIT] In the meantime I use :
B4X:
Dim jo As JavaObject = lv
jo.RunMethod("scrollTo",Array As Object(lv.Items.Size -1))
to scroll to the bottom of the listView.
 
Last edited:
Top