Hello
I'm new in chronoforms and it seems really great!!
In my project I need to have a multiple form but with unlimited steps. Each step would contain the same form.
I need it for screenplays forms. The form would be for one single scene and after each scene, user would eather submit form or add new scene (the same form again).
I know it's quite specific but can Chronoforms help with this issue?
If anybody solved this before, please help.
Thank you very much
Michal
Hi Michal,
nice idea, I will add it to the new release to be released in 2 hours!
Cheers,
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
Great!!! This I call support! Thank you very much Max. Would you kindly direct me shortly on how to use that feature.
Thanks
Michal
Hi Michal,
Indeed I found that this issue can be solved another way, you may do a form and onSubmit check the posted value of the submit button, if its "add more" for example then you redirect them to the form again! example:
onsubmit after email code :
<?php
global $mainframe;
if(JRequest::getVar('formaction') == 'Add One More'){
$mainframe->redirect("form link goes here");
}
?>
form code:
<input name="formaction" type="submit" value="Add One More" />
<input name="formaction" type="submit" value="Finish" />
Regards,
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
Hi Michal,
Oh, I didn't understand it this sway, if so then Fredrik's suggestion should work for you but as he said its a little complicated and its the only one I can find to have it just like your screenshot, you should pay attention that your fields names should be of type array with [] after the name and you should handle them properly on submit!
Cheers
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.