Ionic modal input field not working on BB 10

Hi,

I am using the Ionic framework to do my application and wants to use the Webworks from Blackberry.

Everything seems to work as expected so far, but for some reason, when the ionic modal is shown, the input field behave differently than the BB simulator or what Chrome is giving me.

I can click on the input field and see the cursor waiting for the input, but when typing letters from the Q10 keyboard, nothing is showing. Instead, the Q10 suggests me some words to chose from. If I click on one of the suggested word, it put it in the input field.

Anybody saw that behavior before? If so, what did you do to solve the issue?

By the way, if I put an input field in a standard ion-view, I can easily enter text!

Thanks!

Little update. The input field seems to have a problem when running on a real Q10 device. I will do more test to see if it is related to Ionic or not and let you know.

Another update.

I tried directly to add a label and input within the body tag and it worked perfectly.

<label class="item item-input">
     <input type="text" placeholder="Site name" ng-model="siteAdd.name" >
</label>

When I added the “ion-content”, the input field was not behaving the right way.

Again, if anybody has a thought about it, please, let me know

Thanks

Finally found a fix.

Just need to add overflow-scroll=“true” to the ion-content

I face the same issue too, I think I can adopt this method of yours, thanks anyway