tracker issue : CF-3038952

select a category, or use search below
(searches all categories and all time range)
Title:

Bug 78041:When defining a cfwindow with a source, on CF8, the source was loaded only when the window was showed

| View in Tracker

Status/Resolution/Reason: Closed/Fixed/

Reporter/Name(from Bugbase): Benoit Hediard / Benoit Hediard (benorama)

Created: 06/19/2009

Components: AJAX, UI Components

Versions: 9.0

Failure Type: Unspecified

Found In Build/Fixed In Build: 233019 / 239386

Priority/Frequency: Normal / Unknown

Locale/System: English / Platforms All

Vote Count: 1

Problem:

When defining a cfwindow with a source, on CF8, the source was loaded only when the window was showed.
On CF9, the source is always loaded (when the page is loaded).
This is not a correct behaviour, it generates unnecessary load (on our app, it loads dozens of Flex apps which generates several http requests after initialization...).
Method:

Run the following code on CF9 and CF8 with a browser http sniffer (such as ServiceCapture).
On CF9, it will make additional/unnecessary requests to http://www.yahoo.com.

<cfwindow
	center="true"
	height="300"
	modal="true"
	name="someWindow"
	resizable="false"
	source="http://www.yahoo.com"
	title="Some title" 
	width="400" />

vmanenbo: Added complete repro code:


<cfwindow
	center="true"
	height="300"
	modal="true"
	name="someWindow"
	resizable="false"
	source="src.cfm"
	title="Some title"
	width="400"
	initShow=false/>

	<a href="javascript:ColdFusion.Window.show('someWindow')">Show Window</a>


src.cfm
<cfoutput>#Now()#</cfoutput>


Result:

----------------------------- Additional Watson Details -----------------------------

Watson Bug ID:	3038952

Deployment Phase:	Release Candidate

External Customer Info:
External Company:  
External Customer Name: Benoit HEDIARD
External Customer Email: 6B756ECA439559180AAC0C16
External Test Config: 06/19/2009

Attachments:

Comments:

Are you sure the bug is fixed? I installed the intermediate build (240375) and I can still reproduce the bug. To reproduce it, you can also add <cfoutput>#Now()#</cfoutput> in the .cfm file. You'll see that #now()# in src.cfm is the same as #now()# in the .cfm file defining the cfwindow.
Vote by External U.
23624 | November 10, 2011 06:54:36 PM GMT