Hello,
I have a webDropDown box and I binded it to a text filed and a value field. I need to capture the value of the text field so that it can be used in the javascript for validating against a button.Can any body help me to capture the value of the text field.
Your response in appreciated.
<
ig:WebDropDown ID="wddEmployeeID" runat="server" TextField="EmployeeNumber"ValueField="EmployeeID"EnableAutoFiltering="Off"
EnableCustomValues="false"EnableCustomValueSelection="false"></ig:WebDropDown>
yes you can use:
dropDown.get_currentValue(); // where dropDown is the javascript object for your control that can be obtained with similar code:
var dropDown = $find('Control_ID');
Hope it helps,
Angel
Thank you for reply, It is working.
Thank you for your reply, it is working.