• Resolved edit4ever

    (@edit4ever)


    The currency field triggers the alphanumeric keyboard on mobile instead of the number keyboard. This seems wrong as you are asking a user to input a number and as a result they have to change keyboards.

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @edit4ever

    If the user can enter the currency symbols or comma as thousands separator, the control cannot be limited to numbers only. But you can force it by inserting an “HTML Content” field in the form with the following piece of code as its content:

    <script>
    fbuilderjQuery(document).one('showHideDepEvent', function(){
    jQuery('.cff-currency-field input').attr('inputmode', 'numeric');
    });
    </script>

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘currency field using alphanumeric keyboard on mobile’ is closed to new replies.