I've got some code that's been working for years but has recently stopped in Chrome [IE 10 and FireFox OK]. The alert is displayed but the dialog doesn't close. Any ideas?
Development Environment -
OS: Windows Server 2008 R2
Development: Visual Studio 2008
Library: EO Total 2017 Ver 17.1.14.0
Production Environment -
OS: Windows Server 2008 R2
Web Service: IIS 7
Code: JavaScript
function callback_after_execute_newticket_handler(callback, output, extraData) {
try {
var parm = callback.getParam();
if (parm == "initialize") {
eo_GetObject("dialogNewTicket").show();
} else if (parm == "submit") {
if (extraData == null || extraData.length == 0) {
eo_GetObject("dialogNewTicket").close();
alert("The support request was successfully added...");
} else {
alert(extraData);
}
}
} catch (err) {
alert("callback_after_execute_newticket_handler - " + err);
}
}