Avatar

Level 10

yourTextField.rawValue = dropDown.getDisplayItem(dropDown.selectedIndex);     // This populate whatever selected in the DDL

yourTextField.rawValue = dropDown.getSaveItem(dropDown.selectedIndex);     // This populates the value of the selected DDL

Choose one of the option for your need.

Nith