All,
I have been using the new cfwindow feature, and I love it. But now I'm using it within error trapping, and bubbled exceptions are causing the multiple creation of my support submission cfwindow. I get an error that the cfwindow already exists. I have tried a million ways to keep that from happening I even tried wrapping the cfwindow in a cfif like this:
<cfif NOT ISDEFINED("supportFormWindow")>
<cfset supportFormWindow = true>
<cfwindow title="Application Error Support Submission Form" name="supportFormWindow" center="true" modal="true" initshow="true" height="550" width="650">
<cfinclude template="Dsp_errorDisplayWithSupportForm.cfm">
</cfwindow>
</cfif>
But it still tries to create the window.
Any ideas?
Thanks
I have been using the new cfwindow feature, and I love it. But now I'm using it within error trapping, and bubbled exceptions are causing the multiple creation of my support submission cfwindow. I get an error that the cfwindow already exists. I have tried a million ways to keep that from happening I even tried wrapping the cfwindow in a cfif like this:
<cfif NOT ISDEFINED("supportFormWindow")>
<cfset supportFormWindow = true>
<cfwindow title="Application Error Support Submission Form" name="supportFormWindow" center="true" modal="true" initshow="true" height="550" width="650">
<cfinclude template="Dsp_errorDisplayWithSupportForm.cfm">
</cfwindow>
</cfif>
But it still tries to create the window.
Any ideas?
Thanks