onHidePanel: function () {
var valueField = $(this).combobox("options").valueField;
var val = $(this).combobox("getValue");
var allData = $(this).combobox("getData");
var result = true;
for (var i = 0; i < allData.length; i++) {
if (val == allData[i][valueField]) {
result = false;
}
}
if (result) {
$(this).combobox("clear");
} }