将空行添加到dojox / grid / DataGrid

时间:2013-04-17 08:15:58

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

<div id="gridDiv"></div>
<button id="addRow"  data-dojo-type="dijit.form.Button">Add Row</button>


require(['dojo/_base/lang', 'dojox/grid/DataGrid' , 'dojo/data/ItemFileWriteStore' , 'dojo/dom' , 'dojo/domReady!'],
  function(lang, DataGrid, ItemFileWriteStore, Button, dom){
    /*set up data store*/
    var data = {
      identifier: "id",
      items: []
    };

    var store = new ItemFileWriteStore({data: data});

    /*set up layout*/
    var layout = [[
      {'name': 'Column 1', 'field': 'id', 'width': '100px'},
      {'name': 'Column 2', 'field': 'col2', 'width': '100px'},
      {'name': 'Column 3', 'field': 'col3', 'width': '200px'},
      {'name': 'Column 4', 'field': 'col4', 'width': '150px'}
    ]];

    /*create a new grid*/
    var grid = new DataGrid({
        id: 'grid',
        store: store,
        structure: layout,
        rowSelector: '20px'});

    /*append the new grid to the div*/
    grid.placeAt("gridDiv");

    /*Call startup() to render the grid*/
    grid.startup();
});
  • 我有一个以编程方式创建的dojox / grid / DataGrid,其中没有数据(空存储)..只有布局。
  • 我在网格外面有一个按钮。
  • 我的需求是,点击按钮,我需要在网格中添加一个空行。那个空行不应该来自json。它应该来自商店。
  • 表示单击按钮,应该在存储中添加一个空行,然后网格将加载该存储。有可能吗?

1 个答案:

答案 0 :(得分:2)

单击按钮时,

This fiddle会向商店添加新项目。并且网格将自动更新以反映商店的新内容。

代码的内容是:

var id = 0;

var button = new Button({
    onClick: function () {
        store.newItem({
            id: id,
            col2: "col2-" + id,
            col3: "col3-" + id,
            col4: "col4-" + id
        });
        id++;
    }
}, "addRow");

屏幕截图(按下2个按钮后):

enter image description here