0
所以我使用Kendo UI Grid,並且我想爲列添加數據優先級,這樣我就可以根據視口隱藏和顯示列我知道這可以通過JQuery Mobile( http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_tables_columntoggle)。但是這在Kendo UI中可能嗎?爲Kendo UI Grid添加數據優先
所以我使用Kendo UI Grid,並且我想爲列添加數據優先級,這樣我就可以根據視口隱藏和顯示列我知道這可以通過JQuery Mobile( http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_tables_columntoggle)。但是這在Kendo UI中可能嗎?爲Kendo UI Grid添加數據優先
您可以使用headersAttributes配置將自定義屬性添加到列標題。
使用方法如下(如果使用的是劍道的純JavaScript版本):
$("#grid").kendoGrid({
columns: [ {
field: "name",
title: "Name",
headerAttributes: {"data-priority": "1"}
},
// more columns...
});
看看文檔的這一部分:http://docs.telerik.com/kendo-ui/ api/javascript/ui/grid#configuration-columns.minScreenWidth我懷疑這可能是你在做什麼之後。 –