我想有两个网格,一个除了另一个。具有每个网格的每个网格都包含两列。我需要使用 DOJO 的完整源代码。基本上我正在比较两名员工之间的数据。所以我可以比较两个员工之间的数据。我已经创建了一个显示一名员工数据的网格,但未能在该员工旁边创建另一个网格。我需要使用 DOJO 显示两个网格的帮助
问问题
178 次
2 回答
0
<table dojoType="dojox.grid.DataGrid" id="table1">
<thead>
<tr>
<th width="300px" field="Title">
Title of Movie
</th>
<th width="50px">
Year
</th>
</tr>
<tr>
<th colspan="2">
Producer
</th>
</tr>
</thead>
</table>
<table dojoType="dojox.grid.DataGrid" id="table2">
<thead>
<tr>
<th width="300px" field="Title">
Title of Movie
</th>
<th width="50px">
Year
</th>
</tr>
<tr>
<th colspan="2">
Producer
</th>
</tr>
</thead>
</table>
then using js, add store to initialize it.
var table1 = dijit.byId('table1');
var store1 = new ...whatEverStore;
table1.setStore(store1);
//do same for table2
Hope this helps
于 2013-08-17T15:14:05.563 回答
0
您是否尝试将两个不同的网格设置为两个不同的节点。
例子:
<div id="emp1"> insert grid1</div> <div id="emp2">insert grid2</div>
为网格制作两个不同的商店并分别启动。
问候
于 2013-08-13T07:10:15.433 回答