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