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

    (@codepeople)

    Hello @eduardonie

    You can move next and forward with your own buttons by calling the operation fbuilderjQuery.fbuilder.goToPage

    The attribute of this operation is an object with the properties:

    form, the current form object.
    from, the index of the current page, beginning from zero.
    to, the index to the page to jump.

    For example, if you insert a button in the first page and you want to jump to the third page, insert a button in the form with the following piece of code as its onclick event:

    var f = this.form;fbuilderjQuery.fbuilder.goToPage({form:f,from:0,to:2});

    Best regards.

    Thread Starter eduardonie

    (@eduardonie)

    Thank you very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Own custom “Next” button’ is closed to new replies.