Skip to main content
Known Participant
July 17, 2013
Question

Better debugging than cfdebug in cflayout?

  • July 17, 2013
  • 1 reply
  • 520 views

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?


    This topic has been closed for replies.

    1 reply

    Participant
    April 3, 2020

    How about useing <cftry> inside cflayoutarea

    <cflayoutarea ...>

    <cftry>

    doing something...

    <cfcatch type="any">
    <cfdump var="#cfcatch#">
    </cfcatch>
    </cftry>
    </cflayoutarea>