cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

AppletPage doesn't open by window.open.

Former Member
0 Likes
179

Hi All

New window hardens if window.open doing and new window are opened and it doesn't

open it. (Not Response)

The operation is as follows.

1.Javascript to do window.open to the way below with SelectionEvent of Chart is called.

<APPLET NAME="ProcessChart" CODEBASE="/XMII/Classes" CODE="iChart" ARCHIVE="illum8.zip" WIDTH="310" HEIGHT="140" MAYSCRIPT>

<PARAM NAME="QueryTemplate" VALUE="topQuery">

<PARAM NAME="DisplayTemplate" VALUE="topChart">

<PARAM NAME="SelectionEvent" VALUE="ProcessDetail">

2.New Window is called with window.open in Javascript.

function ProcessDetail(){

window.open("process/process.htm", "_blank", "height=600, width=700, status=yes, toolbar=yes, menubar=yes, location=yes");

}

3.JavaApplet is described in the new pane.

<applet code="iSPCChart" codebase="/XMII/Classes" name="Untitled" width="600" height="230" mayscript="mayscript" archive="illum8.zip" id="Untitled2">

<param name="DisplayTemplate" value="koutei1Chart" />

<param name="QueryTemplate" value="koutei1Query" />

It becomes not response and the screen hardens if Legend is actually done in select

though window does popup.

By the way, three.

It similarly becomes not response only about < applet>tag.

regards

atsushi

View Entire Topic
Former Member
0 Likes

Hi Atsushi,

Have you checked the Java Console for errors? How about the browser - if you are using IE, you may see an error icon at the bottom left of the screen.

Kind Regards,

Diana Hoppe

agentry_src
Active Contributor
0 Likes

Hi Atsushi,

You may also want to try window.location instead of window.open. I have not had problems with window.open, but have heard, second-hand, from people who have. They use window.location instead to fix their problems.

Give it a try and let me know.

Thanks,

Mike

Former Member
0 Likes

Hi Diana Hoppe

IE and JavaCosole

NO error

Regards

Atsushi

Former Member
0 Likes

HI Mike

window.location.href

so

It goes well certainly.

However,

Does another had method exist wanting to display Applet in new window?

Regards

Atsushi

Ask a Question