Hi Fernando,

You can react in flow based on the submitId of the form.

You can request the submitId from flow by using:

form.submitId

Example:

 form.showForm();
 switch(form.submitId) {
   case "details":
        showDetails();
        break;
   case "create":
        createNew();
        break;
   case "cart":
        redisplayForm = false;
        showCart();
        break;
   case "ok":
        redisplayForm = false;
        processForm(form);
        break;
  }

I found the example in the archives.

Regards,

Reijn



[EMAIL PROTECTED] wrote:
How can one react differently in a flow when there are several fd:submit elements in a form?

Thanks


Kind regards,

Jeroen Reijn

Hippo

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to