4

我正在使用 dgrid 以网格格式显示数据,它有四列。都是可编辑的

我使用了以下方式来声明它。

<table id="grid" data-dojo-type="dgrid.CustomGrid" data-dojo-props="store: memoryStore">
<thead>
    <tr>
        <th data-dgrid-column="dgrid.editor({ field: 'id' }, dijit.form.TextBox, 'click')">ID</th>
        <th data-dgrid-column="dgrid.editor({ field: 'name' }, dijit.form.TextBox, 'click')">Name</th>
        <th data-dgrid-column="dgrid.editor({ field: 'description' }, dijit.form.TextBox, 'click')">Description</th>
    </tr>
</thead>
</table>

我的问题是,当我编辑第一列时,编辑后应该将焦点放在第二列并在该单元格中显示光标,这样我就可以开始编辑第二列了;第三列也是如此。

我对 dojo 和 dgrid 非常陌生。我在 sitepen 上找到了一些 API,但无法解决我的问题

请帮助我

4

2 回答 2

5

There is dgrid/Grid::edit(cell) method to start with.

I used dojo/aspect::after to add an event listener to an editor widget (e.g. dijit/form/TextBox), if it does not exist, to listen keypress event for a specific key, in my case TAB, and then call grid.edit(cell) with the cell that should be edited next.

See a working example at jsFiddle: http://jsfiddle.net/phusick/2jU7R/

It is far from finished, but at least it can provide a possible directon. Use double click to edit and press TAB when editing to jump to the following cell.

aspect.after(grid, "edit", function(promise, cellNode) {

    if(promise === null) return;

    promise.then(function(widget) {
        if (!widget._editorKeypressHandle) {
            widget._editorKeypressHandle = widget.on("keypress", function(e) {

                for (var rowId in grid.selection) { break;}            
                for (var columnId in grid.selection[rowId]) { break;}

                if(e.charOrCode == keys.TAB) {
                    e.preventDefault();
                    var cellEdited = grid.cell(rowId, columnId);
                    var cellToEdit = grid.right(cellEdited, 1);

                    if(cellEdited.row.id == cellToEdit.row.id
                       && cellEdited.column.id == cellToEdit.column.id
                      ) {
                          // go to next line
                          for(var firstColumnId in grid.columns) { break;}
                          var nextRow = grid.down(cellEdited.row, 1);
                          cellToEdit = grid.cell(nextRow, firstColumnId);
                    };

                    grid.deselect(cellEdited);
                    grid.select(cellToEdit);
                    grid.edit(cellToEdit);
                }
            })
        }
    });
});
于 2012-09-03T14:15:40.010 回答
0

这是另一种选择。还包括旧版本 dgrid 中文本选择错误的解决方法。

postCreate: function() {
    var that = this;
    this.inherited(arguments);

    // FIXME Workaround bug in dgrid that causes the grid to lose
    // focus after each save.
    this.on('dgrid-datachange', function(evt) {
        that._selectedCell = that.cell(evt);
    });

    aspect.after(this, 'save', function(dfd) {
        dfd.then(function() {
        var nextCell = that.right(that.cell(that._selectedCell.row.id, that._selectedCell.column.id));
            that.edit(nextCell);
        // FIXME Workaround dgrid bug that blocks field text to be selected on focus.
        nextCell.element.widget && nextCell.element.widget.textbox && nextCell.element.widget.textbox.select();
        });
    });
}
于 2013-11-21T23:19:41.370 回答