11-28-2012 11:31 PM
Hi, I have a container that uses Stackayout. I would like to add many UI Controls in the container, problem is, I would like the container to scrolls when theres too many controls added.
How do i do that? Thank you ![]()
Solved! Go to Solution.
11-28-2012 11:49 PM - edited 11-28-2012 11:50 PM
Page{
Container {
layout: DockLayout {
}
ScrollView {
Container {
layout: StackLayout {
orientation: LayoutOrientation.TopToBottom
}
horizontalAlignment: HorizontalAlignment.Fill
verticalAlignment: VerticalAlignment.Top
Container {
//Content goes here
}
}
scrollViewProperties {
scrollMode: ScrollMode.Vertical
}
}
}
}This is how I implemented it, hope it works for you.
11-29-2012 04:06 AM
Thanks for the tips
https://developer.blackberry.com/cascades/referenc