Page 1 of 1

multiple MobileControls INPUT on a card

Posted: Wed Mar 18, 2015 3:03 pm
by gepponline
Hi!
i have 3 mobilecontrols (type input) on a card.

When i clik on one of them to fill it, instead of the return button to confirm, i have a left to right arrow that move the focus on the next mobile control.
The only one that show the confirm button is the last mobilecontrol
why?
How to avoid it?

thank you!

Re: multiple MobileControls INPUT on a card

Posted: Thu Mar 19, 2015 4:14 pm
by asayd
You may have to set the keyboard type and/or the return key label when you click on the field(s):

Code: Select all

on openField
    if the environment is "mobile" then
        mobileSetKeyboardType "default"
        if the platform is "iphone" then
            iphoneSetKeyboardReturnKey "done"
        end if
    end if
end openField
Note the the iphoneSetKeyboardReturnKey command is iOS only, unless something has changed recently.

Hope this helps,

Devin

Re: multiple MobileControls INPUT on a card

Posted: Thu Mar 19, 2015 4:26 pm
by gepponline
ok!
I'm working on android but it working teh same with SetKeyboardReturnKey