The knowledge base is no longer actively updated, we have moved all content to our Community Support Forum

Going back to a previous page

Author: BitRock Support       Date: January 05, 2009 18:06       Tags: Installation
User input and custom installer pages
Actions

You can modify the flow of the installer by using the built-in next_page variable, as show in the example below:

    <infoParameter>
      <name>summary</name>
      <title>Summary</title>
      <validationActionList>
        <showQuestion text="Is the information correct? Press 'No' to re-enter" variable="result" />
        <setInstallerVariable name="next_page" value="installdir">
          <ruleList>
            <isFalse value="${result}" />
          </ruleList>
        </setInstallerVariable>
      </validationActionList>
    </infoParameter>