formsy-react/examples
Semigradsky 3cdcdf57ce Fixed uncontrollable/controllable components in examples 2016-07-05 11:22:25 +03:00
..
components Added `dynamic form fields` example. 2015-12-01 17:00:43 +03:00
custom-validation Fixed uncontrollable/controllable components in examples 2016-07-05 11:22:25 +03:00
dynamic-form-fields Fixed uncontrollable/controllable components in examples 2016-07-05 11:22:25 +03:00
login Fixed uncontrollable/controllable components in examples 2016-07-05 11:22:25 +03:00
reset-values Added `reset-values` example. 2015-09-10 15:26:17 +03:00
README.md Added `dynamic form fields` example. 2015-12-01 17:00:43 +03:00
global.css Added `dynamic form fields` example. 2015-12-01 17:00:43 +03:00
index.html Added `dynamic form fields` example. 2015-12-01 17:00:43 +03:00
webpack.config.js Added `reset-values` example. 2015-09-10 15:26:17 +03:00

README.md

Formsy React Examples

To run and development examples:

  1. Clone this repo
  2. Run npm install
  3. Start the development server with npm run examples
  4. Point your browser to http://localhost:8080

Possible Issues

Examples might not run if you have an old node packages. Try clear npm cache and reinstall dependencies:

rm -rf node_modules
npm cache clean
npm install
npm run examples

If it is not helped try update your node.js and npm.

Examples

  1. Login

    Two required fields with simple validation.

  2. Custom Validation

    One field with added validation rule (Formsy.addValidationRule) and one field with dynamically added validation and error messages.

  3. Reset Values

    Reset text input, checkbox and select to their pristine values.

  4. Dynamic Form Fields

    Dynamically adding and removing fields to form.