Re: CF9: How pass cfgrid values to a cfm page?

2010-06-13 Thread Raymond Camden
On Fri, Jun 11, 2010 at 9:00 PM, Azadi Saryev azadi.sar...@gmail.com wrote:  On 11/06/2010 23:40, Raymond Camden wrote: You've made your button use CF's navigate function, which is NOT going to pass the form fields along actually, it IS going to pass them if you specify form's name or id as

CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Joy Rose
I get Element RCP_ID is undefined in FORM when I run the code below: If possible, Id like to continue to work with the ColdFusion.navigate function. RCPMngmnt.cfm excerpt: cfform name=faddRCP size=400 id=faddRCP cfgrid name=AddRCP title=Add New RCP selectmode=edit

CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Joy Rose
I get Element RCP_ID is undefined in FORM when I run the code below: If possible, Id like to continue to work with the ColdFusion.navigate function. RCPMngmnt.cfm excerpt: cfform name=faddRCP size=400 id=faddRCP cfgrid name=AddRCP title=Add New RCP selectmode=edit

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Raymond Camden
You've made your button use CF's navigate function, which is NOT going to pass the form fields along. Why not just get rid of that and use a normal submit? On Fri, Jun 11, 2010 at 8:16 AM, Joy Rose joycer...@gmail.com wrote: I get  Element RCP_ID is undefined in FORM when I run the code below:

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Azadi Saryev
On 11/06/2010 23:40, Raymond Camden wrote: You've made your button use CF's navigate function, which is NOT going to pass the form fields along actually, it IS going to pass them if you specify form's name or id as the last parameter of ColdFusion.navigate() function - which Joy did. @Joy -