在收到新信息后,我无法尝试更改数据网格的结构。我需要能够在每次查询时更改列数。
我用来创建网格的javascript代码
function setgrid(){
var gridLayout = [];
var key, i;
for(i = 0; i < 10; i++) {
key = i + "";
gridLayout.push({
field: key,
name: key,
editable: false
});
}
// create a new grid:
billsGrid = new dojox.grid.DataGrid({
query: {},
//store: store,
clientSort: true,
rowSelector: '20px',
structure: gridLayout,
columnReordering: true
}, gridContainer);
// Call startup, in order to render the grid:
billsGrid.startup();
}
和html:
<div id="gridContainer" style="width: 650px; height: 600px; border: 1px solid silver;" />
如何更改网格以使用5列的新布局?
答案 0 :(得分:8)
找到它,只需知道要调用什么来将新布局应用到现有网格。在这种情况下:
billsGrid.setStructure(newLayout);
答案 1 :(得分:1)
在最新版本的dojo中,没有方法setStructure
。您可能想要使用:
grid.set('structure', newStructure);