I need to simulate that a textInput itemdenderer in a dataGrid has just been click in/on with the mouse. My efforts with manually dispatching an event to the itemRenderer have failed, as I do not know how to reference it. Can anyone help please?
I can reference the grid with:
var mev:MouseEvent = new MouseEvent("click",false,false);
mydataGrid.dispatchEvent(mev);
but the itemRenderer within a dataGridColumn?

