所以我正在使用Kendo UI Grid,我希望将数据优先级添加到列中,这样我可以隐藏并根据视口显示列我知道这可以通过JQuery Mobile(http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_tables_columntoggle)。但是这在Kendo UI中是否可行?
答案 0 :(得分:0)
您可以使用headersAttributes配置向列标题添加自定义属性。
像这样使用它(如果你使用纯javascript版本的剑道):
$("#grid").kendoGrid({
columns: [ {
field: "name",
title: "Name",
headerAttributes: {"data-priority": "1"}
},
// more columns...
});