• Resolved Michalooki

    (@michalooki)


    Hi, and thanks for this great plugin.
    In a form I use the input field with “number” format in order to use numbers such as 1.1, 1.2, 1.3 etc.
    When viewing the form and moving the cursor to the input field an arrow appear that let you move up and down with numbers.
    Is there a way to make it move up and down with 0.1 and not to the next full digit?

    Thanks
    Michal

    https://wordpress.org/plugins/calculated-fields-form/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    In this case you should select for the “format” attribute, the “Number” choice instead “Digits”.

    Best regards.

    Thread Starter Michalooki

    (@michalooki)

    Hi and thank for your fast reply.
    I chose for the “format” attribute, the “Number” choice.
    I can put numbers this part is ok.
    My question is about moving up and down with the numbers, it goes up and down with a full number, I need to move up and down with 0.1.
    For example:
    In this link:
    http://sfi-toodle.com/calculator-toodle-green/
    The defauld value is 4
    , when clicking on the arrow it will change the number to 5.
    I need it to be 4.1.
    Is that possible?
    Thanks

    Plugin Author codepeople

    (@codepeople)

    Hi,

    Please, follow the steps below:

    1. Insert a “HTML Content” field in the form.

    2. With the piece of code below as its content:

    <script>
    fbuilderjQuery(document).one('showHideDepEvent', function(){
    fbuilderjQuery('[type="number"]').attr('step', 0.1);
    });
    </script>

    and that’s all.
    Best regards.

    Thread Starter Michalooki

    (@michalooki)

    It is working, thanks alot.
    Does it matter if the html content is placed in the begining or the end of the form?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘input field format number – is there a way to move up/down in 0.1’ is closed to new replies.