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

update event and initialUpdate in 12.2.3

Former Member
0 Kudos
236

Hi

I have an iBrowser applet whoes initialUpdate value is set to false.

However it still runs the update event function when the page is first loaded.

Is this a bug?

View Entire Topic
Former Member
0 Kudos

Also tested as below, still running update event.

<HTML>

<HEAD>

          <TITLE>Your Title Here</TITLE>

          <SCRIPT language="JavaScript">

                    function disableUpdateEvent(){

     document.myBrowser.setUpdateEventEnabled(false);

     alert(document.myBrowser.getUpdateEventEnabled());

                    }

                    function hello()

                    {

                                   alert("hello");

                    }

          </SCRIPT>

</HEAD>

<BODY onload="disableUpdateEvent()">

<APPLET NAME="myBrowser" CODEBASE="/XMII/Classes" CODE="iBrowser" ARCHIVE="illum8.zip" WIDTH="640" HEIGHT="400" MAYSCRIPT>

          <PARAM NAME = "QueryTemplate" VALUE="EditForms/Queries/MachineGroup_Select_SQL">

          <PARAM name="UpdateEvent" value="hello">

</APPLET>

</BODY>

</HTML>