How do you get the row index (position) of a row by id in ExtJS GridPanel?
use the store.indexOf method:
var record = store.getNodeById(id), rowIndex = store.indexOf(record);
Ext.data.Store.indexOfId
var rowIndex = store.indexOfId(id);