创建两个网格除了其他每个网格,每个网格使用dojo,每个网格有两列。

时间:2013-08-12 22:10:05

标签: dojox.grid.datagrid dojox.grid dojo

我希望除了其他之外还有两个网格。具有每个网格的该网格中的每一个包含两列。我需要使用DOJO完整的源代码。 基本上我正在比较两名员工之间的数据。所以我可以比较两个员工之间的数据。 我已创建了一个显示一个员工数据的网格,但未能在该员工旁边创建另一个网格。我需要帮助,使用DOJO显示另外两个网格

2 个答案:

答案 0 :(得分:0)

您是否尝试将两个不同的网格设置为两个不同的节点。

示例:

<div id="emp1"> insert grid1</div>  <div id="emp2">insert grid2</div>

为网格制作两个不同的商店并单独启动。

此致

答案 1 :(得分: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