• Resolved Francis

    (@emolotel)


    Hi do I need the following condition?
    If fieldname1 = 1 go to the next page, otherwise no!
    Is all this possible?

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

    (@codepeople)

    Hello,

    You can do the following, assuming the equation associated to the calculated field: fieldname1 is, for example: fieldname2+fieldname3, you can edit it as follows:

    
    (function(){
        var result = fieldname2+fieldname3;
        if(result == 1)
        {
            getField(1).jQueryRef().closest('.pbreak').find('.pbNext').show();
        }
        else
        {
            getField(1).jQueryRef().closest('.pbreak').find('.pbNext').show();
        }
        return result;
    })()
    

    If you need additional help implementing a specific behavior to your form, you should contact me through my private website: Customization

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Next page’ is closed to new replies.