Answer below to your Query: There are number ways we can implement the same...below is the optimistic solution.
Scenario:
1. Combobox has 5 items; 1-> Kumar ; 2-> Perla; 3->NYSE; 4->London; 5--> UK
2. Display/show Item 3 functionality on the screen.
Code snippet for above scenario:
function ComboBoxSelectionItems(ItemSelection )
{
-----;
var ComboBoxChild = FindChild(Array("ObjectType","ObjectIdentifier"),Array("Combobox", "Combobox_ID"),1);
var ItemSelection = "NYSE";---> User will send this value to your script.
switch(ItemSelection)
{
case: "NYSE":
ComboBoxChild.Keys(ItemSelection );
break;
-----;
----;
}
OR
var ItemSelection = ComboBoxChild.wItem.Items(3); // 3--> NYSE in CB;
Switch(ItemSelection)
{
case: "NYSE":
ComboBoxChild.Keys(ItemSelection);
break;
}
}