It’s in the select handler because it’s setting the control enabled.
It was basically just the disabled and SelectedIndex. I added the displayMember and valueMember since I been trying to get the value
Even if my event handler looks like this
$("#orgs").bind('select', function(event) {
var localityCd = "en-US";
if (event.args) {
$("#transportType").jqxDropDownList(
{
disabled: false,
selectedIndex: -1,
});
window.OrgNbr = event.args.item.value;
transportTypesSource.data = { OrgNbr: window.OrgNbr, localityCd: localityCd };
$("#transportType").jqxDropDownList({ source: transportTypesAdapter });
}
});
My second dropdownlist is loaded with the description.
But I still can not get the value. it’s always blank and undefined.