I want to get grid's cell and fire cellclick event on it programmatically. How can I implement it?So far I am successful to get cell's dom element like this
var cell = pos.view.getCellByPosition(newPos);
but when I execute the following code
cell.fireEvent('click');
it gives me error because its not Ext Component. Is there any way to get Ext Component from Dom Element. Dom element has an ID but when I use
Ext.getCmp(cell.id);
it returns nothing.