使用dojo创建两个网格,每个网格都有两列



我想要两个网格,一个在另一个旁边。每个网格包含两列。我需要使用DOJO的完整源代码。基本上,我是在比较两名员工之间的数据。所以我可以比较两个员工之间的数据。我已经创建了一个显示一名员工数据的网格,但未能在该员工旁边创建另一个网格。我需要使用DOJO 显示两个网格的帮助

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

示例:

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

分别为网格和启动创建两个不同的存储。

问候

<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

相关内容

  • 没有找到相关文章

最新更新