I am using combo and on select of combo i get the value of the selected item.Now i want to set that value into the textfield.
How can i do that ??
I am using combo and on select of combo i get the value of the selected item.Now i want to set that value into the textfield.
How can i do that ??
Code:Ext.getCmp('id-of-textfield').setValue(value);
It worked.Thank you sir...