dojo – 动态隐藏dgrid中的列

前端之家收集整理的这篇文章主要介绍了dojo – 动态隐藏dgrid中的列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_404_3@
如何根据一些运行时参数隐藏dgrid(gridFrom Html)中的完整列?
让我们说如果参数的值为true我应该能够显示一些列,如果值为false,那么我应该能够隐藏同一列.

解决方法

使用grid.styleColumn(columnId,css):

var grid = new Grid({
    store: store,columns: [
        { id: "artist",label: "Artist",field: "Artist"},{ id: "name",label: "Song",field: "Name"},{ id: "gerne",label: "Genre",field: "Genre"}
    ]
},"grid-placeholder");

// to hide column with id="name"
grid.styleColumn("name","display: none;");

// to show it
grid.styleColumn("name","display: table-cell;");
@H_404_3@
原文链接:https://www.f2er.com/dojo/730052.html

猜你在找的Dojo相关文章