--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Hi,this looks really great.
I have 3 questions for which I would highly appreciate the answers:
1. What is the best way to include some form magic, i.e. sending the changes not directly to the model but to a form that does some verification and also return the form error messages?
2. If I do not want to send field by field, but possibly a set of fields back to the to the server, like the row of a table. Would that be feasible?
3. How would you create a new field on the page/ new object in the model?
Keep up the great work
Juergen
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/rR9BqMnZhEsJ.
2. If I do not want to send field by field, but possibly a set of fields back to the to the server, like the row of a table. Would that be feasible?Now this is not implemented, and I think it is not trivial. But you can try it
3. How would you create a new field on the page/ new object in the model?I'm sorry I don't understand this
2. If I do not want to send field by field, but possibly a set of fields back to the to the server, like the row of a table. Would that be feasible?Now this is not implemented, and I think it is not trivial. But you can try iti am afraid my js skills are too limited for that :-(
3. How would you create a new field on the page/ new object in the model?I'm sorry I don't understand thislet me explain with an example: i have an recipe model and i have ingredients that have a foreign key to recipe. on the web page i display the recipe plus all its ingredients. and with inplaceedit i can edit all those ingredients, which is great. but how would i enable the user to add a new ingredient?