我有以下自动完成代码。
$("#input").kendoAutoComplete({
minLength: 4,
dataTextField: "ProductName",
template: kendo.template($('#productAutoCompleteTemplate').html()),
dataSource: {
serverFiltering: true,
data: "json",
transport: {
read: {
url: productSearchUrl,
dataType: "json",
type: "post"
},
parameterMap: function(data) {
return {
searchText: $('input.txtProductText', $panelBar.select()).val()
};
}
}
},
select: onProductSelected
});
自动完成工作正常。但我需要显示加载图像,直到从服务器检索到数据。如何使用 KendoUI 自动完成功能实现这一点?