Debugging jquery post to coldfusion

2009-10-01 Thread Doug Hyde
I am having trouble processing a post to a cf template using a jquery post. I have set up a template to dynamically evaluate the form fields being posted - it isn't working, however it uses the following basic syntax: cfloop list=#FieldNames# index=i cfif i does not contain

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
-Original Message- From: Doug Hyde [mailto:deve...@fusesite.com] Sent: Thursday, October 01, 2009 6:32 AM To: cf-talk Subject: Debugging jquery post to coldfusion I am having trouble processing a post to a cf template using a jquery post. I have set up a template to dynamically evaluate

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Craig Dudley
. andy -Original Message- From: Doug Hyde [mailto:deve...@fusesite.com] Sent: Thursday, October 01, 2009 6:32 AM To: cf-talk Subject: Debugging jquery post to coldfusion I am having trouble processing a post to a cf template using a jquery post. I have set up a template to dynamically

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Raj Vijay
Firebug is a great tool and will save you lot of time. CF solution: you can use the cftry..cfcatch and email the errors. Example: cftry !--- your code --- cfcatch type=any cfmail subject= type=html from= to= cfdump var=#cfcatch.detail# -- #cfcatch.message# /cfmail /cfcatch

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Gerald Guido
I ran into Fiddler a while back. Pretty freaking awesome. It has a FF plugin as well. http://www.fiddler2.com/fiddler2/ On Thu, Oct 1, 2009 at 7:31 AM, Doug Hyde deve...@fusesite.com wrote: I am having trouble processing a post to a cf template using a jquery post. I have set up a template

RE: Debugging jquery post to coldfusion

2009-10-01 Thread Andy Matthews
Fiddler is good, but for the most part, Firebug is better. -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Thursday, October 01, 2009 9:20 AM To: cf-talk Subject: Re: Debugging jquery post to coldfusion I ran into Fiddler a while back. Pretty freaking

Re: Debugging jquery post to coldfusion

2009-10-01 Thread Tony Bentley
Generally when trying to debug a template, I will log the variables on a separate page that I can refresh. Simply put the following code either in your application.cfm or in the onrequest function in the application.cfc cfsavecontent variable=exc #now()# h2FORM/h2 cfdump var=#form#