0

我有一个带有 dblclick 侦听器的 Ext.grid.Panel。它看起来像这样:

listeners: {
    dblclick: {
        fn : function() {

               console.log("double click event processed");
        },
        element: 'el'
    }                
}

双击一行时,我想在新页面中打开一个 URL。为了确定 URL,我需要访问行数据 - 或者访问我的 JSON 中用作面板存储的“行”。我将如何访问这些数据?

4

1 回答 1

1

好吧,事件是 itemdblclick(没有 dblclick)。并且该行作为参数传递给处理程序。

例如,在下面的示例中,当您双击一行时,您会看到一个警报弹出窗口,其中显示了选定的 Simpson 名称:

Ext.create('Ext.data.Store', {
    storeId:'simpsonsStore',
    fields:['name', 'email', 'phone'],
    data:{'items':[
        { 'name': 'Lisa',  "email":"lisa@simpsons.com",  "phone":"555-111-1224"  },
        { 'name': 'Bart',  "email":"bart@simpsons.com",  "phone":"555-222-1234" },
        { 'name': 'Homer', "email":"home@simpsons.com",  "phone":"555-222-1244"  },
        { 'name': 'Marge', "email":"marge@simpsons.com", "phone":"555-222-1254"  }
    ]},
    proxy: {
        type: 'memory',
        reader: {
            type: 'json',
            root: 'items'
        }
    }
});

Ext.create('Ext.grid.Panel', {
    title: 'Simpsons',
    store: Ext.data.StoreManager.lookup('simpsonsStore'),
    columns: [
        { text: 'Name',  dataIndex: 'name' },
        { text: 'Email', dataIndex: 'email', flex: 1 },
        { text: 'Phone', dataIndex: 'phone' }
    ],
    height: 200,
    width: 400,
    listeners: {
        itemdblclick: {
           fn : function(grid, record) {
               alert(record.get('name'));
           }
        }
    },                

    renderTo: Ext.getBody()
});​

你也可以看到它在这里工作:http: //jsfiddle.net/lontivero/utjyd/1/

祝你好运!

于 2012-12-11T17:03:57.443 回答