0

我有一个使用 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

谢谢!

4

1 回答 1

0

检查状态由模型中的读取字段控制,因此您需要对其进行修改:

expand: function(row, record) {
    record.set('read', true);
}
于 2013-02-12T21:01:25.743 回答