kendoUI toolbar kendoComboBox 使用

kendoUI toolbar kendoComboBox 使用_第1张图片

 

 

$("input[name=gpsIMEI]").kendoComboBox({
filter: "contains",
dataTextField: 'imei',
dataValueField: 'imei',
listWidth: 230,
// headerTemplate: '',
template: '
' +'#: data.imei #' +' '+ '(#:data.creater #)' +'
',
dataSource: IMEI,
height: 300,
dataBound: function(e){
if (this.select() === -1) { //check whether any item is selected
this.select(0);
this.trigger("change");//真实有效的获取到这个值(而非仅仅显示出来)
}
}
});

你可能感兴趣的:(kendoUI toolbar kendoComboBox 使用)