这是我的数据网格:
// $ is a reference to `this` as it lies in an anonymous function
$.grid = new DataGrid({
store : $.dataStore,
query : {id : "*"},
structure : [
{
noscroll : true,
cells : [{ name : "Recipe", field : 'name', width : '200px' }],
},
{
cells : [
[
{ name : 'ID#', field : 'id', width : '50px'},
{ name : 'Category', field : 'category', width : '100px'},
{ name : 'Status', field : 'status', width : '100px'},
{ name: "Actions", width : '200px', type: dojox.grid.cells._Widget, formatter : $._actionButtons}
]
] // end cells
}
]
}, $.targetNode)
$.grid.startup();
$.grid.on("RowClick", function(e){
console.log(this.getItem(e.rowIndex))
})
我formatter
的 Actions 单元格对象:
_actionButtons : function(){
var _self = this;
var _args = arguments;
this.group = new Pane()
var full = new Button({
label: 'View Full',
style : { fontSize : '80%'},
onClick : function(){
try {
_self.grid.onRowClick.apply(this, arguments)
}catch(e){}
}
});
full._destroyOnRemove = true;
var edit = new Button({
label : 'Edit',
style : {fontSize: '80%'}
});
edit._destroyOnRemove = true;
construct.place(full.domNode, this.group.containerNode)
construct.place(edit.domNode, this.group.containerNode)
return this.group;
}
我正在尝试访问将由onRowClick
DataGrid 上的正常事件传递的事件对象。就目前而言,这有点工作,但是在on("RowClick"...)
块上我得到了多个日志。如果没有该try...catch
块,我会收到一个错误,因为 rowIndex 不存在e
,然后还有 2 个日志存在。
这是我包含 pub/sub、emit() 等的第 4 个左右的想法。我感觉多个日志是由冒泡行为(按钮 -> 行 -> 数据网格等)引起的,但是得到将 onRowClick 的事件对象传递给在格式化程序中创建的按钮似乎是不可能的。
我只想从 Button 小部件的onClick
事件中访问 rowIndex (和其他 DataGrid-esque 属性)以根据按下的按钮进行处理。