The issue is that onCompleted is called on listView before any data is available in the model. In other words you are trying to position the view at row 3 when there are 0 rows available and the request is ignored. The workaround suggested by bob should work. You could also react to onCountChanged on the ListView as well.
↧