6

Are there any examples I can look at that use HTML::FormFu with AJAX form validation and submission? I would really not like to write my validation routines three times (once in JS, once in FormFu constraints, and once in DBIC models), so I'd really like a way that's integrated with HTML::FormFu::Model::DBIC if possible.

brian d foy
  • 129,424
  • 31
  • 207
  • 592
A. Murka
  • 212
  • 1
  • 6

1 Answers1

1

Use JQuery Validation Engine that submits form to PHP and returns the fancy error boxes if there is any validation required. Have a look at this link: JQuery Validation

Sailab Rahi
  • 581
  • 1
  • 8
  • 11