Re: Dynamically Added Form Fields Not Submitted

2011-09-23 Thread Robert Nurse
I've seen this behavior with malformed HTML were the form tags are between table and tr tags. Check to make sure your HTML is valid. -Dan Dan hit the nail on the head! I simply encompassed the table with the form rather than the form with the table. That did it! Thanks for all your input!

Re: Dynamically Added Form Fields Not Submitted

2011-09-23 Thread Robert Nurse
I've seen this behavior with malformed HTML were the form tags are between table and tr tags. Check to make sure your HTML is valid. -Dan html children table rows which are added to a table. The table is within a form. It works just fine in IE. But, no FireFox. Dan hit it right on the

Re: Dynamically Added Form Fields Not Submitted

2011-09-22 Thread Robert Nurse
Are you actually adding them as elements to the dom or just adding the html text to the table data? I've had this exact issue and gotten around by properly adding the children to the form. Hi, I've been adding them via DOM calls to table cells which are added to table rows which are added

Re: Dynamically Added Form Fields Not Submitted

2011-09-22 Thread Michael Grant
Could you share some code? On Thu, Sep 22, 2011 at 2:48 PM, Robert Nurse rnu...@gmail.com wrote: Are you actually adding them as elements to the dom or just adding the html text to the table data? I've had this exact issue and gotten around by properly adding the children to the form.

RE: Dynamically Added Form Fields Not Submitted

2011-09-22 Thread Bobby Hartsfield
: Dynamically Added Form Fields Not Submitted Are you actually adding them as elements to the dom or just adding the html text to the table data? I've had this exact issue and gotten around by properly adding the children to the form. Hi, I've been adding them via DOM calls to table cells which

Re: Dynamically Added Form Fields Not Submitted

2011-09-22 Thread Dan G. Switzer, II
I've seen this behavior with malformed HTML were the form tags are between table and tr tags. Check to make sure your HTML is valid. -Dan On Thursday, September 22, 2011, Robert Nurse rnu...@gmail.com wrote: Are you actually adding them as elements to the dom or just adding the html text to

Dynamically Added Form Fields Not Submitted

2011-09-14 Thread Robert Nurse
Hi All, I've written some Javascript that will dynamically add file type inputs to a form. Or, so I thought. They show up on the page just fine when the control is clicked. But, when I submit the form to the CF template, those form fields are absent from the form structure. The added

RE: Dynamically Added Form Fields Not Submitted

2011-09-14 Thread Bill Franklin
Try here: http://www.coldfusionjedi.com/index.cfm/2009/1/18/Mixing-client-side-dynamic-forms-with-dynamic-ColdFusion-form-processing -Original Message- From: Robert Nurse [mailto:rnu...@gmail.com] Sent: Wednesday, September 14, 2011 11:18 AM To: cf-talk Subject: Dynamically Added Form

Re: Dynamically Added Form Fields Not Submitted

2011-09-14 Thread Michael Grant
Are you actually adding them as elements to the dom or just adding the html text to the table data? I've had this exact issue and gotten around by properly adding the children to the form. On Wed, Sep 14, 2011 at 12:17 PM, Robert Nurse rnu...@gmail.com wrote: Hi All, I've written some