cancel
Showing results for 
Search instead for 
Did you mean: 

12.1.4 Param.x assignment in an APPLET

Former Member
0 Kudos

Under earlier releases I have been able to assign a Param.x value in the applet as:

<PARAM NAME="Param.1" VALUE=""> where is a global javascript variable as:

var Plant = "FF00";

Or at least I thought I used to do it that way. Any help would be appreciated.

Thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks Jeremy.

jcgood25
Active Contributor
0 Kudos

If 'Plant' is truly in your session then you will see it in the table produced by /XMII/PropertyAccessServlet?Mode=List

Global JavaScript variables would have nothing to do with the session - you would either need to have this as a custom attribute mapped to a Role or User and automatically part of their session upon login, or you need to use an applet to call document.APPLETNAME.setPropertyValue("Plant","FF00");

Once it's part of your session you'll see it in the URL above, and your PARAM line in an applet will work just fine.