I would prefer not to post my whole script but basically I have a replicant, within that replicant there is a dropdown to select which type of content - buttons or dropdowns.
Below that I have two containers with the names of the values of the "which type" dropdown
for(var i = 0; i < options.length; i++) {
if (options[i].value != '') {
var v = options[i].selected;
IWDatacapture.getItem(name + "/" + options[i].value).setVisible(v);
}
}
Upon change this script is called (It works, the proper containers are displayed)... but the display on the screen gets all screwed up. The newly displayed container overlays the fields below. It's as if it's on a different z-index.
This is occurring in both IE and FF.
Has anyone seen this and/or fixed it?