我正在向dojox.grid.DataGrid添加一个新的空行,并希望将焦点放在新行的第一个单元格中.
@H_301_7@
@H_301_7@我通过调用添加行:
@H_301_7@
var new_row = {},attributes = store.getAttributes( items[0] ); dojo.forEach( attributes,function( attribute ) { dojo.forEach( attributes,function( attribute ) { new_row[ attribute ] = null; } ); } ); store.newItem( new_row );@H_301_7@我相信以下代码将重点关注: @H_301_7@
grid.focus.setFocusIndex( row_index,0 ); grid.edit.setEditCell( grid.focus.cell,row_index );@H_301_7@但我无法弄清楚如何在网格重新渲染后才调用此代码.我想我需要连接到一个事件.但是,我看不到可能发生的事件.似乎在添加新行之前调用onNew(). @H_301_7@这是一个JSFiddle,尽可能接近解决方案. http://jsfiddle.net/xDUpp/(注释掉标记为编辑的行并添加新行) @H_301_7@谢谢
解决方法
您对哪个版本的Dojo感兴趣?
@H_301_7@
@H_301_7@Dojo API在ver之间有所不同.在这件事上.
@H_301_7@看着:
http://jsfiddle.net/keemor/xDUpp/11/ @H_301_7@修改商店后,网格需要一点时间来重建自己,所以setFocusIndex& setEditCell也必须延迟工作: @H_301_7@
http://jsfiddle.net/keemor/xDUpp/11/ @H_301_7@修改商店后,网格需要一点时间来重建自己,所以setFocusIndex& setEditCell也必须延迟工作: @H_301_7@
store.onNew = function( new_item ) { var rowIndex = new_item._0; window.setTimeout(function() { grid.focus.setFocusIndex( rowIndex,0 ); grid.edit.setEditCell( grid.focus.cell,rowIndex ); },10); };@H_301_7@格尔茨