Harald
Harald

Reputation: 31

Zend_Form equivalent for ruby / rails

Does anyone know if it there exist any Ruby or rails equivalent of zend_form?

I'm asking because I'm porting a project that I made in PHP with zend framework over to rails. This an event registration/form builder which basically means I need to generate forms from fields in a database. Zend_Form makes creating forms programmaticly very easy with validation and the works. Now I need to make this in rails but I can't see how it can be done any other way than making it all from scratch. Any ideas on the matter is very much appreciated. :)

If there's nothing like zend_form for rails/ruby is anybody interested in making it with me? I'm very new to rails and Ruby so i could very much need the help. :)

Upvotes: 3

Views: 146

Answers (1)

Hauleth
Hauleth

Reputation: 23556

Is simple_form or Formtastic isn't enough? Add to this partials and you have similar tool that looks much better and is MVC.

Upvotes: 1

Related Questions