5

How can I get data at certain row and column from Ext.grid.panel. suppose I want data at row X and column Y.

Dimitri
  • 2,798
  • 7
  • 39
  • 59

1 Answers1

7

On some action :

grid.store.getAt(rowIndex).data.y

Here 'y' is dataIndex of particular column

Dev
  • 3,922
  • 3
  • 24
  • 44