[symfony-users] Re: Invoice Model

2010-04-07 Thread Veríssimo
Hello I have read the chapter with closer attention and solved my first problem. Now i have another problem :) using the subform symphony saves first the father form and them the children forms is there a way to do this the opposite? First save the children forms ? This is because a want to have

[symfony-users] Re: Invoice Model

2010-03-31 Thread Massimiliano Arione
Did you read the entire chapter? See http://www.symfony-project.org/more-with-symfony/1_4/en/06-Advanced-Forms#chapter_06_saving_object_forms cheers Massimiliano On 30 Mar, 19:56, Veríssimo jveriss...@gmail.com wrote: The echo was just a debug line, but I should only use the embed form only

[symfony-users] Re: Invoice Model

2010-03-30 Thread Massimiliano Arione
You don't need to check. The getObject() method returns null if no object associated, and this is fine with form instance. Just avoid to echo object's id in the form's configure why are you doing this??? cheers Massimiliano On 30 Mar, 01:07, Veríssimo jveriss...@gmail.com wrote: I have

[symfony-users] Re: Invoice Model

2010-03-30 Thread Veríssimo
The echo was just a debug line, but I should only use the embed form only if the $this-getObject() != null. Because when it is null the embed form(Invoiceline) is saved with the variable invoiceid = null. thank you. On Mar 30, 2:20 pm, Massimiliano Arione garak...@gmail.com wrote: You don't

[symfony-users] Re: Invoice Model

2010-03-29 Thread Massimiliano Arione
In this documentation chapter http://www.symfony-project.org/more-with-symfony/1_4/en/06-Advanced-Forms you can find a problem like yours, explained. Also, I suggest you to use compact syntax for your schema.yml, you can improve readability a lot cheers Massimiliano On 28 Mar, 14:17, Veríssimo

[symfony-users] Re: Invoice Model

2010-03-29 Thread Veríssimo
I will read that. Thank you Massimiliano. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to

[symfony-users] Re: Invoice Model

2010-03-29 Thread Veríssimo
I have implemented this, but i only have the Object after a previous have saved it. Do i have to do something like check ($this-getObject()) as a object? public function configure() { $subForm = new sfForm(); for ($i = 0; $i 2; $i++) { $linharecibo = new Linharecibo();