1.获取选中数据:

1.获取选中数据:
grid.on('cellclick',function(grid, rowIndex, columnIndex, e)
    {
        var s=grid.getStore();
        var x=s.getAt(rowIndex);
        x.get('company');
        alert(x.get('company')+x.get('price')+ x.get('lastChange')+x.get('pctChange')+x.get('change'));
    });

你可能感兴趣的:(1.获取选中数据:)