Status/Resolution/Reason: Closed/Withdrawn/CannotReproduce
Reporter/Name(from Bugbase): David Jacobson / David Jacobson (David Jacobson)
Created: 09/16/2015
Components: AJAX, UI Components
Versions: 11.0
Failure Type:
Found In Build/Fixed In Build: CF11_Final /
Priority/Frequency: Major / All users will encounter
Locale/System: English / Win 2008 Server R2 64 bit
Vote Count: 0
I am trying to open a cfwindow via javascript, the code worked before the upgrade and now all I get is the modal part and no window. Any ideas?
From the code below I get the alert and then the modal but not the actual window. When I look at it in Firebug I see the correct response but no window. ARGH!!!!
<a href="##" onClick="editAccounting(#regID#);">
<img src="../../_images/icon_edit.png" width="15" height="15" align="absmiddle" alt="Edit Registration"/>
</a>
var editAccounting = function(regID) {
alert(regID);
try {
ColdFusion.Window.destroy('acctWindow',true);
}
catch(e) {
ColdFusion.Window.create('acctWindow', 'Event Registration Information', 'payment/testData.htm?regID='+regID, {height:575,width:800,modal:true,closable:true,draggable:true,resizable:false,center:true});
ColdFusion.Window.show('acctWindow');
ColdFusion.Window.onHide('acctWindow',AcctCleanup);
}
};
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4057631
External Customer Info:
External Company:
External Customer Name: David Jacobson
External Customer Email:
External Test Config: My Hardware and Environment details:
Attachments:
Comments: