0

Ext.ux.grid.CheckColumn と Ext.ux.grid.RowExpander を使用する Ext.grid.GridPanel があります。

RowExpander にリスナーを追加し、行が (RowExpander で) 展開された後に Ext.ux.grid.CheckColumn によって作成されたチェックボックスを「チェック」しようとしています。どうすればそれができるかについてのアイデアはありますか?

以下の私のコード:

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 に答える