You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An initial implementation is already available. The idea is to allow the generation of a form based upon a model of our system (an User, a Product etc.). For instance, the following code:
Product prod = new Product();
...
formFor(prod)
...
would generate a complete form for creating (or editing) a product, with an input for each of its fields. Note that this is just an idea. I don't know how feasible it is...
The text was updated successfully, but these errors were encountered:
Interesting, Rodrigo. That's almost what I'm looking for. It's not perfect
for me because you need to type a considerable amount of code for it to
work, IMHO. Even though, I'm considering using it. Thanks!
An initial implementation is already available. The idea is to allow the generation of a form based upon a model of our system (an User, a Product etc.). For instance, the following code:
would generate a complete form for creating (or editing) a product, with an input for each of its fields. Note that this is just an idea. I don't know how feasible it is...
The text was updated successfully, but these errors were encountered: