Hello friend here is the solution to ur problem
right click on the dropdown list and select auto-sbmit on change from the drop down menu. when u set auto-sbmit on change it fires automatically valuechange action of the dropdown list.
here is the complete code for dropdown list
public void dropDown1_processValueChange(ValueChangeEvent event) {
String name=(String)(dropDown1.getSelected());
textField1.setText(name);
}
with the above code u can go ahead. good luck for all ur works.
Regards
-
Anandkumar