Internet Explorer IE8 で剣道グリッドのヘッダー列にフィルター アイコンが表示されないのはなぜですか? バグですか?コードを確認したところ、 に設定されましたfilterable:true
。Firefoxで動作します。
私はそれを次のように使用します:
$("#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"
}
]
});