storyboarder
v1.1.3
Published
A simple multi-panel user flow manager baked with simple form field validation and reporting
Downloads
12
Keywords
Readme
Storyboarder
Storyboarder is an easy-to-use form wizard and form validator that makes form validation easy. You establish the scenes, navigation buttons, and inputs in the dom and it will handle the rest. Storyboarder works well in all browsers down to (and including) IE8.
Some things Storyboarder is good for:
- establishing a linear flow of dom elements ( scenes )
- requiring inputs to be filled, making inputs optional
- reporting unfilled/errored inputs to the user
- adding callbacks to the completion of the wizard
- adding callbacks to the completion of a scene
- adding additional scenes to the flow
- adding additional inputs to the scenes
- linking inputs' required states
- reporting all input activity in a json-like fashion
##Examples: Check out all of the examples in examples/index-basic.html and examples/index-advanced.html
###Basic Usage: var storyboarder = new Storyboarder() storyboarder.report() //produces a json-like object //{ "test1": "", "test2": ""}