Reputation: 1407
I have a Container element in Codename one and I have set it scrollable. How do I scroll to its bottom from code?
Upvotes: 4
Views: 780
Reputation: 52760
Use scrollComponentToVisible on the last component. E.g.:
myScrollable.scrollComponentToVisible(myLastCmp);
Upvotes: 2