Thanks Peter for your reply.
We are already checking for args in ComboBox’s change event. First time we get correct value but second time we are getting undefined and args is false and so goes into else part clearing the combobox value. Can we restrict the second call?
e.g.
$('#cmbState').on('change', function (event) {
var hidStateId = document.getElementById("hidStateId");
var args = event.args;
if (args) {
var item = args.item;
var value = item.value;
hidStateId.value = value;
}
else {
hidStateId.value = '';
$("#errNotification").jqxNotification({ width: 270 });
$("#errNotificationmsg").text("State does not exist");
$("#errNotification").jqxNotification("open");
$("#cmbState").val('');
$("#cmbState input").focus();
}
});