Zend_Form equivalent for rubies / rails

Does anyone know if there is any Ruby or rails equivalent to zend_form?

I ask because I am porting a project that I created in PHP with the zend platform for rails. This is an event / form creator, which basically means that I need to create forms from fields in the database. Zend_Form allows you to create forms programmatically very easily through validation and work. Now I need to do this on rails, but I don’t see how it can be done in any other way than to do everything from scratch. Any ideas on this are greatly appreciated. :)

If nothing like zend_form for rails / ruby ​​is anyone interested in doing this with me? I am very new to rails and Ruby, so I really need help. :)

+3
source share
1 answer

Is simple_form or Formtastic isn enough? Add to this a partial one, and you have a similar tool that looks much better and MVC.

+1
source

All Articles