jmon Well-Known Member Licensed User Longtime User Jan 28, 2014 #1 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: Jan 28, 2014
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.