I have a requirement to have dynamic combo boxes on the DCT where the values are read in from an XML file. When a user selects a value from
combo1, the values in combo2 are updated accordingly. When the user selects a value from Combo2, the values in comb3 are updated accordinly..etc..
From what I have read on the forums here, there are 2 feasible solutions for meeting this requirement.
1) Use Javascript to load the XML upon opening the DCT, parse the data and build arrays to attach to the combo boxes
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async="false";
xmlDoc.load("combodata.xml");
2) Use a callserver and use PERL to load and parse the XML. The results would then be returned as an array.
Which solution is more desirable from a TeamSite maintenance and performance perspective? Is there another way of doing this?
Thanks,
GG
Env: Solaris 10 - TS 6.7.1-SP1