是否可以在slickgrid中使用隐藏列?隐藏列我的意思是我想为每一行保存一些数据,但我不希望这些数据显示在网格上。
答案 0 :(得分:17)
数据与网格中的列之间没有隐含的关系 - 两者完全相互独立。因此,您的数据可以包含比实际绑定到网格列更多的字段。
示例:
var grid;
var columns = [
{id: "title", name: "Title", field: "title"},
{id: "duration", name: "Duration", field: "duration"},
{id: "%", name: "% Complete", field: "percentComplete"},
{id: "effort-driven", name: "Effort Driven", field: "effortDriven"}
];
var options = {
enableCellNavigation: true,
enableColumnReorder: false
};
$(function () {
var data = [];
for (var i = 0; i < 500; i++) {
data[i] = {
title: "Task " + i,
duration: "5 days",
percentComplete: Math.round(Math.random() * 100),
start: "01/01/2009",
finish: "01/05/2009",
effortDriven: (i % 5 == 0)
};
}
grid = new Slick.Grid("#myGrid", data, columns, options);
})
此处我的data
数组包含字段start
和finish
,但我选择在创建columns
数组时将其排除。
答案 1 :(得分:3)
我认为您可以使用grid.setColumns
来实现这一点 - 假设您在声明网格时设置了columns={id, a, b, c}
;初始化网格后,您可以调用grid.setColumns(newColumns)
- 其中newColumns
是新的列数组,其中排除了ID - newColumns={a, b, c}
。
此列仍可访问,并且与其关联的所有数据也应该可用。
希望这有帮助!
答案 2 :(得分:0)
在angular-slickgrid版本中,您可以执行以下操作 1.在列定义中,包括所有列的 2.在Present中,重新添加您想在网格中看到的列ID。现在加载页面并查看列选择器菜单。您将很高兴看到所有列。一些未选中
例如
this.columnDefinitions = [
{ id: 'name', name: 'Name', field: 'name', filterable: true, sortable: true },
{ id: 'duration', name: 'Duration', field: 'duration', filterable: true,sortable: true },
{ id: 'complete', name: '% Complete', field: 'percentComplete', filterable:true,sortable: true }
];
this.gridOptions = {
presets: {
// the column position in the array is very important and represent
// the position that will show in the grid
columns: [
{ columnId: 'duration', width: 88, headerCssClass: 'customHeaderClass' },
{ columnId: 'complete' }
]
// name will be present in the menu but not on the grid