How might I fire an event with Ext Core.
<input id="myButton" type="button" />
In jQuery I would: $("#myButton").click();
How might I do this in Ext? Ext.get('myButton')???
Thanks
Printable View
How might I fire an event with Ext Core.
<input id="myButton" type="button" />
In jQuery I would: $("#myButton").click();
How might I do this in Ext? Ext.get('myButton')???
Thanks
Ext.get('myButton').dom.click();