1 onHidePanel: function () { 2 var valueField = $(this).combobox("options").valueField; 3 var val = $(this).combobox("getValue"); 4 var allData = $(this).combobox("getData"); 5 var result = true; 6 for (var i = 0; i < allData.length; i++) { 7 if (val == allData[i][valueField]) { 8 result = false; 9 } 10 } 11 if (result) { 12 $(this).combobox("clear"); 13 } 14 15 }
时间: 2024-11-02 11:46:01