Atanas your right. Thanks. got it to work. the problem was that the new
ajax generated form fields were not getting attached to the DOM as
child nodes of the form.

to solve either:

1. make sure form tags are not inbetween <tr> and <td> and <table>
tags. They should either be completely inside <td></td> or outside of
<table></table>. Difficult when you need to keep things aligned!

or

2. you can manually add the generated ajax form field to the form
element by using the javascript's appendChild functions. Be warned that
this will shift the new fields to the end of the form because it is
"appending" them to the element.


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"symfony developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-devs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to