Vendetta
Vendetta

Reputation: 513

Text Field hiding while enabling keypad in blackberry10 cascades qml

I am having a TextField in qml layout, while enabling the keyboard the first TextField is showing and below all the TextField is hiding. How do I solve this issue? text field hiding

Upvotes: 2

Views: 480

Answers (2)

Vendetta
Vendetta

Reputation: 513

Here is the solution

ScrollView { scrollViewProperties { scrollMode: ScrollMode.Vertical } }

Upvotes: 2

Benoit
Benoit

Reputation: 1921

Add all your views inside a ScrollView. You'll then be able to scroll up to the unreachables items.

Upvotes: 0

Related Questions