为什么 Internet Explorer IE8 在 Kendo 网格的标题栏中不显示过滤器图标?它是一个错误吗?我检查了代码并将其设置为filterable:true
. 在火狐的作品中。
我这样使用它:
$("#myHtmlTable1").kendoGrid({
dataSource: {
pageSize: 18
},
scrollable: false,
sortable: true,
filterable: true,
selectable: true,
pageable: {
input: false,
numeric: false
},
change: function () {
// MY LOGIC
},
columns: [
{
field: "Col1",
width: 40
},
{
field: "Col2",
width: 250
},
{
width: 40,
field: "Col3"
},
{
width: 150,
field: "Col4"
}
]
});