Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get data from grid's row Ext JS

Tags:

grid

extjs

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

like image 344
Dimitri Avatar asked Jun 28 '13 09:06

Dimitri


People also ask

What is grid in Ext JS?

grid. Panel is one of the centerpieces of Ext JS. It's an incredibly versatile component that provides an easy way to display, sort, group, and edit data.

What is renderer in Ext JS?

Column renderers give us the ability to customize the behavior and rendering of the cells inside a grid's panel. A renderer is tied to a particular column, and will run for each cell that it has to display/create in that column. In the Ext JS library, many renderers are already set inside the Ext. util.


1 Answers

On some action :

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

Here 'y' is dataIndex of particular column

like image 183
Dev Avatar answered Oct 05 '22 08:10

Dev