1

我在这里设置了一个控制器来监听对网格行的点击:

   init: function() {
            this.control({
                'mygrid': {
                    select: this.viewDesc //On click...
                }
            });
        },

现在,无论单击哪个单元格,都会触发此事件。但是,我想听听特定列/单元格的点击。

这怎么可能实现?

4

1 回答 1

1

您可以将cellclick事件用于网格,并确定用户单击了哪个单元格,它类似于:

init: function() {
    this.control({
        'mygrid': {
            cellclick: function(view, td, cellIndex, record, tr, rowIndex, e, eOpts) {
                // if clicked on cell 4, show popup otherwise ignore
                if(cellIndex == 3) { // cellIndex starts from 0
                    Ext.Msg.alert('Selected Record', 'Name : ' + record.get('firstname') + ' ' + record.get('lastname'));
                }
            }
        }
    });
},

上面的代码片段取自对您上一个问题的回答

于 2013-10-07T06:42:59.523 回答