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
 the last parameter of ColdFusion.navigate() function - which Joy did.

Doh! Thanks for that. Had to check the reference just to be sure, but
you are absolutely right.

-ra

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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: If 
 possible, Id like to continue to work with the ColdFusion.navigate function.


 RCPMngmnt.cfm excerpt:



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334471
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 - you have set http method parameter of ColdFusion.navigate()
function to 'GET' - thus your form values will be in URL scope, not in
FORM scope. so to get RCP_ID use #url.rcp_id#

Azadi


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334500
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm