我有一个使用 Ext.ux.grid.CheckColumn 和 Ext.ux.grid.RowExpander 的 Ext.grid.GridPanel。
我已经向 RowExpander 添加了一个侦听器,并且我试图在展开行后“检查”由 Ext.ux.grid.CheckColumn 创建的复选框(使用 RowExpander)。关于我如何做到这一点的任何想法?
我的代码如下:
var expander = new Ext.ux.grid.RowExpander({
width: 15,
selectRowOnExpand: true,
align: 'left',
tpl : new Ext.Template(
........
),
listeners: {
expand: function (row,record,body,rowIndex) {
------>>>>>> what do I put here to fire an event into checkcolumn ?
}
}
}
var checkbox = new Ext.ux.grid.CheckColumn({
header: 'Read',
dataIndex: 'read',
id: 'read',
width: 30
});
var mygrid = new Ext.grid.GridPanel({
renderTo: document.getElementById('inbox'),
plugins: [new Ext.ux.IconMenu(), search, expander, checkbox],
..............
..............
columns:[
checkbox,
{ other column definition }
etc etc
谢谢!