I have this in Ext.ux.grid.touch.view with editable.
Code:
{ header : 'Packs',
dataIndex : 'packs',
width : '10%',
style : "text-align: center;",
editor : {
xtype : 'numberfield'
}
},
How can I listen for the CHANGE or BLUR event in the controller?
I've tried many suggestions from the forum, but could not make it work.
If I attach listeners right below the xtype: 'numberfield', it works but I need to be
able to reference it in the controller for further processing.
thank you.