fire click event for button
- by Hadas
I have column with buttons like this:
var grid = new Ext.grid.GridPanel({
store: store,
columns: [
{ header: 'Issue',renderer: function(val){ return '<input type="button" class="btnissue" value="Issue" />'; }, dataIndex: 'btn', width: 49 }
],
renderTo: Ext.get('Issuing')
});
and I…