2

如何禁用或启用 dojox 数据网格中选择性单元格的编辑,即

想象一下,我在数据网格中有两列(A,B)。我希望 B 的列值可以根据 A 列的值进行编辑。我在堆栈溢出中看到了一种解决方案,该解决方案特定于 DOJO 版本。我想知道是否有 API 可以实现上述目标。

4

2 回答 2

3

我的首选方法是覆盖

canEdit: function(inCell, inRowIndex)

数据网格的方法。从那里,你可以得到项目:

this.getItem(inRowIndex)

然后确定它是否应该是可编辑的,并返回真/假。

不过,这确实会覆盖列上的可编辑标志,因此如果需要,您需要对其进行处理。

于 2012-11-05T22:29:59.693 回答
0

没有这样的 API。我最近也有类似的要求,这是我实现它的方式:

1) 最初 B 列是可编辑的,因为我在网格的字段部分中这样做了 2) 使用 onRowClick 捕获行的呈现。这样的事情应该做

dojo.connect(grid, "onRowClick", grid, function(evt){
  var idx = evt.rowIndex,
  item = this.getItem(idx);

  //  get a value out of the item
  msname = this.store.getValue(item, "msname");
  if(msname != null &U& (trim(msname) == trim(offsetName))) {
    dojox.grid.cells._Base.prototype.format(idx, item);
  }
});

然后,以下方法不允许对所需列进行内联编辑。我们将行索引和列索引传递给以下函数:

dojox.grid.cells._Base.prototype.format = function(inRowIndex, inItem){
    var f, i=grid.edit.info, d=this.get ? this.get(inRowIndex, inItem) : (this.value || this.defaultValue);
    d = (d && d.replace && grid.escapeHTMLInData) ? d.replace(/&/g, '&amp;').replace(/</g, '&lt;') : d;

                //Check inRowIndex and inItem to determine whether to be editable for this row here.

    if(this.editable && (this.alwaysEditing || (i.rowIndex==inRowIndex && i.cell==this))){
    return this.formatEditing(d, inRowIndex);
    }else{
    return this._defaultFormat(d, [d, inRowIndex, this]);
    }
}

希望有帮助。可能您可以添加一个 jsfiddle,我们可以尝试修复它。

于 2012-10-03T04:00:41.423 回答