我目前正在使用 SlickGrid 并允许用户使用 ColumnPicker 选择要显示的列。
按照http://mleibman.github.com/SlickGrid/examples/example4-model.html上的示例,我已经能够很好地工作。
我不确定的下一步是是否可以选择在第一次渲染时显示的默认列列表。
例如,假设我有一个包含 5 列的数组,声明如下:
{
name: "Name"
field: "Name"
id: "Name"
sortable: true
minWidth: 120
editor: Slick.Editors.Text
},
{
name: "Address"
field: "Address"
id: "Address"
sortable: true
minWidth: 175
editor: Slick.Editors.Text
},
{
name: "Town"
field: "Town"
id: "Town"
sortable: true
minWidth: 80
editor: Slick.Editors.Text
},
{
name: "Country"
field: "Country"
id: "Country"
sortable: true
minWidth: 80
editor: Slick.Editors.Text
},
{
name: "Network"
field: "Network"
id: "Network"
sortable: true
minWidth: 80
editor: Slick.Editors.Text
}
目前,所有这些列都将显示出来,并且可以选择隐藏在 ColumnPicker 中。我正在寻找的功能是,例如,说我只希望显示列名称、地址和网络,但仍然让其他列作为 ColumnPicker 中的选项。
这是到位还是有实现这一目标的可用方法?