My project's UI using both HTML and applet.
when the javascript function "saveSessionAs()" that has the following statement, getting called from the HTML the popup window flickers.
value = window.showModalDialog(ContextPath + "/jsp/choosepath_frames.jsp", args, "dialogHeight:"+dlg_height+"px;dialogWidth:550px;help:no;scroll:no;status:no");
while the same function called from the applet using the statement
ReportApplet.getJSObject().call("saveSessionAs");
Then its working fine. It does not flicker.
So my doubt is, why the same function's behaviour is different??
And how that can we fixed??