views:

55

answers:

2

I'm now reading this tutorial:

http://www.symfony-project.org/jobeet/1_4/Doctrine/en/10

But I want to know more of it under the hood,like the design pattern/principles.

+1  A: 

I believe you're looking for this:

http://www.symfony-project.org/forms/1_4/en/

Tom
Why it still use propel in the document while symfony has by default doctrine enabled?
Probably because the Symfony guys just havent updated the documentation. In any case, the Propel stuff doesn't really relate to forms directly so just adapt what you see to Doctrine.
Tom
Also,this is not the deep insight I'm seeking,it doesn't mention too much about the most complex part of sfForm:embedded form.I haven't found a tuto that covers the general process to deal with embedded form yet..
I was never able to find anything easy to read for that either.
Tom
I think the most important thing of symfony is just the form,why don't they write enough documents on that?I'm now stuck here...
A: 

Have you read Advanced Forms in More with symfony yet?

Felix Kling
It doesn't mention too much about how the bind is done for embedded forms,seems I need to dive into the code implementation...