I have a slide box with multiple slides, each slide has 3 inputs and a submit & cancel button. In android 4.2.2 device the prev/next buttons from the keyboard tries to go from the 3rd input of slide 1 to the 1st input of the next slide, but what actually happens is the two slides clash and merge, on lollipop the user is on 3rd input then presses next then the keyboard drops so it knows its the end of the form.
I’ve also stopped user swiping to change the slide this ‘could’ be part of why the slides overlay but i want to stop the swipe change the slide - I use buttons to change the slide.
I’ve tried negative tab-indexing, haven’t yet tried giving each form on each a slide a different name to each other say
<form name="slideForm{{$index}}" form-manager novalidate >
<input type="number" ng-model="data.param1" />
<input type="number" ng-model="data.param2" />
<input type="number" ng-model="data.param3" />
<button class="button button-clear" ng-click="closeSlideBoxModal()">Cancel</button>
<button ng-disabled="!slideForm.$valid" class="button button-balanced" ng-click="submitData((data.param1),(data.param2),(data.param3))">Submit</button>
</form>
If i could find a way to disable the next button(keyboard) when on the 3rd input that would be grand!