hi I am using forms
How can I get ComboBox selected display value? because I see fieldName,I want get combobox text name
thank you
<form name=”ajaxform” class=”formData” action=”InsertForm” method=”POST”>
<table style=”width:415px; margin-left:-10px;” class=”tftable”>
<tr>
<td>
<label id=”lbCountry”>Country</label></td>
<td>
<div id=”Country” data-name=”Country” class=”Global Combo Country”></div>
</td>
</table>
</form>
$("#Country").jqxComboBox({
source: country.List,
displayMember: CountryName,
valueMember: CountryId,
height: "275px",
width: "34px",
selectedIndex: 0,
});

