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 :
to scroll to the bottom of the listView.
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))
Last edited: