A web framework that handles forms intuitively?
A web application will be launched, which should provide various HTML forms for inputting data , so I was wondering if there is a web framework out there that does this in a smart way. usually when you have forms, you have a lot of considerations like navigation, validation, etc. that are very much not handled by the wireframes I've seen so far.
Did someone take the pain out of the mold?
0
source to share
3 answers
Have you tried looking at Grails ? It can take your domain classes and dynamically forge them into web forms and apply server side validation. By default, scaffolding provides navigation, pagination, validation and all sorts of others, which are very good!
Here's a good tutorial .
+1
source to share