I'm trying to use auto-generated forms in symfony, but I have troubles finding good up to date articles about customization. One of the most important thing is - queries from / updates to several tables.
Specificaly, example: there's table tblMain and auto-generated class tblMainForm I use. However, column ForeignKey references to tblAdditionalTable's id column. My autogenerated form displays a html select with those id numbers. What I really need is obviously appropriate values of specific column from AdditionalTable, not just id. And besides I dont need select here but custom ajax combobox instead; so that users would be able to enter their own values; which in turn would be stored in tblAdditionalTable.
So in short, is there an easy way to customize forms like that (links to articles would be most appreciated)? Or maybe it's better to write my own symfony form handling class instead of using Doctrine's one?
Thanks for your replies