0
Better debugging than cfdebug in cflayout?
New Here
,
/t5/coldfusion-discussions/better-debugging-than-cfdebug-in-cflayout/td-p/5243390
Jul 17, 2013
Jul 17, 2013
Copy link to clipboard
Copied
I am using cflayout extensively in an app.
But I find the debugging useless. So I must be doing something wrong.
It loads and I get error ...
"Error retreiving markup for element cf_layoutareamanage: OK
[Enable debugging by adding 'cfdebug' ...
Adding that provides me with an AJAX window with error:
error:http: Error retrieving markup for element cf_layoutareamanage : OK
More helpful? I think not.
What does one do to see the error?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
New Here
,
LATEST
/t5/coldfusion-discussions/better-debugging-than-cfdebug-in-cflayout/m-p/11024532#M185064
Apr 03, 2020
Apr 03, 2020
Copy link to clipboard
Copied
How about useing <cftry> inside cflayoutarea
<cflayoutarea ...>
<cftry>
doing something...
<cfcatch type="any">
<cfdump var="#cfcatch#">
</cfcatch>
</cftry>
</cflayoutarea>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

