Back button not working in wizard

Issue #333 resolved
Muhammed Ali Onder created an issue

In Edit mode, back and next buttons are working properly. But when we are out of edit mode, only next button is working.

Comments (1)

  1. Ada Trajer

    This issue occurred due to code changes for myBackFunction(step) in custom-wizard.service file in apq-c3-custom/js folder.

    Please replace the existing code for myBackFunction(step) with the one provided below:

    myBackFunction(step) {

    // return CustomWizard.self.$timeout(() => {

    // alert('myBackFunction');

    //console.log("Custom backCallback called...", step)

    let formData = step.wizardData.formData;

    //WizardCtrl.self.backDisabled = false

    return true;

    // if (formData.inputval1 == '')

    // return true;

    // else

    // return false;

    // }, 2000); }

  2. Log in to comment