【发布时间】:2013-01-11 13:10:41
【问题描述】:
为什么 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"
}
]
});
【问题讨论】: