My SegmentedControl needs to have 6 options. So I have the following QML:
import bb.cascades 1.2
Container {
topPadding: 20.0
SegmentedControl {
selectedIndex: 0
Option {
text: "1"
}
Option {
text: "2"
}
Option {
text: "5"
}
Option {
text: "10"
}
Option {
text: "20"
}
Option {
text: "50"
}
}
}
In Momentics however, I see only the first 4 options. Why?