Hi, what I am doing wrong or forgetting to activate? When I return to a form it is not blank but contains the data that was previously entered. This occurs independent of computer and network.
I have just checked my other form and it works just fine. This issue appears only to happen with my multipage form.
I have just checked my other form and it works just fine. This issue appears only to happen with my multipage form.
Reading around it looks like I may need to insert some custom code at the end of the 'On Submit' block and then unset each variable... just seems a little long winded.
Hi abasel,
You can also set the last Multi-Page action to clear the saved data. Make sure that it is in the final On Submit event so that there are not more Back buttons for the user to click.
Bob
You can also set the last Multi-Page action to clear the saved data. Make sure that it is in the final On Submit event so that there are not more Back buttons for the user to click.
Bob
Hi Bob,
I am not sure if this is what you meant but I put the following custom code inas the last action of the "On Submit" section.
But it didn't appear to work.
I am not sure if this is what you meant but I put the following custom code inas the last action of the "On Submit" section.
<?php
$form->data = array();
?>
But it didn't appear to work.
This topic is locked and no more replies can be posted.