Hi,
I have two radcomboBoxs in my page.
I would like to compare the selected value in the first combo with the second combo selected value.
What I did is
I have two radcomboBoxs in my page.
I would like to compare the selected value in the first combo with the second combo selected value.
What I did is
<
script language="javascript" type="text/javascript">
var firstCombo = <%=srcStudyMinLengthSelector.ClientID%>;
function SecondComboHandleEndChanging(sender, eventarqs) {
sender.get_text(); // this is the second combo selected value
alert(firstCombo .value); // this returns the first combo selected text not value
alert(firstCombo .text); // undefined
alert(firstCombo .get_value()); // javascript error 'no method'
}
</
script>
Your help would be appreciated,
Toby