I found some vague info on the web regarding refreshOnShow:true not working 
when using ColdFusion.Window.create instead of <cfwindow>
is this the case? is there a work around?

function goAddNote(theType,theID) {
var theURL = 'index.cfm?action=contact_info.add_note&type=' + theType + '&id=' 
+ theID;

var windowOptions = new Object();
windowOptions.width = 800;
windowOptions.height = 600;
windowOptions.center = true;
windowOptions.modal = false;
windowOptions.resizable = true;
windowOptions.initshow = false;
windowOptions.draggable = false;
windowOptions.closeable = true;
windowOptions.refreshOnShow = true;
windowOptions.bodystyle = 'margin-left: 0px; margin-top: 0px; padding-top: 0px; 
padding-left: 0px; background-color: ffffff;';

ColdFusion.Window.create('Addnote1', 'Add Notes', theURL, windowOptions);
ColdFusion.Window.show('Addnote1');
}


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307436
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to