Hristo Vrigazov
Hristo Vrigazov

Reputation: 1407

How do I scroll down a scrollable container in Codename one?

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

Answers (1)

Shai Almog
Shai Almog

Reputation: 52760

Use scrollComponentToVisible on the last component. E.g.:

myScrollable.scrollComponentToVisible(myLastCmp);

Upvotes: 2

Related Questions