日期:2014-05-16 浏览次数:20414 次
$("#Country").combobox({
valueField: 'Id',
textField: 'ShowCn',
onChange: function (newValue, olbValue) {
// if (vac.isEmpty(newValue)) return false;
$(this).combobox("reload", "/BaseData/getCountryWithEmpty?nameCn=" + encodeURI(newValue));
},
onSelect: function (record) {
$("#Country").combobox("setValue", record.ShowCn);
// $("#tagid").val(record.Id);
}
})