How to suppress developer sidebar from a view rendered via Ajax

I’m attempting to render a view via Ajax, which is easy enough, but I have the developer sidebar enabled in development mode, and that code is also appearing in view being delivered to the page via ajax.

Can someone tell me how to suppress the sidebar? I am using the Ajax-specific layout detailed in the Coldbox docs, if that matters/helps.

Thanks!

Gary

you can do this:

rc.sbIsEnabled = false

or event.setValue(“sbIsEnabled”,false)

Luis F. Majano
President
Ortus Solutions, Corp
www.ortussolutions.com

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com

Social: twitter.com/lmajano facebook.com/lmajano

Thanks very much, Luis!