我只想在kendo下拉列表中找到自定义文本。但我在互联网上搜索并没有得到任何解决方案。所以,请任何团体帮助我。
这是我的代码:
$("#dropdownlist").kendoDropDownList({
//headerTemplate: 'Filter by Name',
dataSource: {
data: [
'Filter by Name',
'Abcd',
'Xyz',
'Pqrs',
'Mno'
]
}
});
答案 0 :(得分:3)
我相信您正在寻找'optionLabel',它显示默认空项目的文本。例如:
$("#dropdownlist").kendoDropDownList({
//headerTemplate: 'Filter by Name',
dataSource: {
data: [
'Filter by Name',
'Abcd',
'Xyz',
'Pqrs',
'Mno'
]
},
optionLabel: "Select an item..."
});
此处有更多详情:http://docs.telerik.com/kendo-ui/api/javascript/ui/dropdownlist#configuration-optionLabel