Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any good Wizard libraries in Flex?

I'm looking for a good "Wizard" library in Flex before rolling my own. The important features are:

  • Multiple custom input panels in sequence.
  • Ability to prepopulate the data fields using an object, but cancelling at any point leaves original data unmodified.
  • Ability to move to back and forth in panel sequence without losing data.
like image 932
Chadwick Avatar asked Dec 04 '25 17:12

Chadwick


2 Answers

Here is something I wrote that might fit your needs

http://code.google.com/p/flashmatticomponents/wiki/Wizard

Hope it helps, Cheers!

like image 191
Flashmattic Avatar answered Dec 07 '25 07:12

Flashmattic


I suggest just using a ViewStack container; alongside this I suggest using ViewStack effects to transition between each "input panel": http://www.efflex.org/

A "input panel" would probably be made up of a TitleWindow component (with the closeButton=true) and a Form component (with TextInputs,ComboBoxes,DateSelectors,etc)

Unfortunately, I have not come upon any library with this functionality.

like image 35
Luis B Avatar answered Dec 07 '25 05:12

Luis B