Nuno I guess what your call does is to make a hyperevent call and then fiddle with the DOM - yesno
I can understand doing this when the user changes something on the page There are probems with the onLoad - it's cos the onload can fire before the java applet is initialised - so there is no hyperevent there BUT why do this in the OnLoad()??? you know everything server side so construct the contents of the drop-down there maybe <csp:if "condition=Type1"> HTML foe type 1 </csp:else> HTML for type 2 </esp:if> Peter On Fri, 06 Aug 2004 02:51:10 +0100, Nuno Canas <[EMAIL PROTECTED]> wrote: >Class Category > Property Name as %String [Required]; > Relationship Families as Family [ Cardinality = children, Inverse = >Category]; > >Class Family > Property Name as %String [Required]; > Relationship Category As Category > [ Cardinality = parent, Inverse = Families]; > >Class Product > Property Category as Category [Required]; > Property Family as Family; > >I have 2 or more properties Parent-Child related presented as Select >Boxes (Drop Down). > >For instance: > Category (the main one) having "Hardware","Software" > Family having "IBM","HP","Microsoft" > >When loading the form, i have all the data load and i can put Microsoft >selling Hardware :-( Not a good idea... >My problem is just on loading because OnChange everything is fine. > >Any hints ?? > >TIA >Nuno
