grdGSMNotification.js
587 Bytes
Ext.define('App.controller.grdGSMNotification', {
extend: 'Ext.app.Controller',
stores: ['RegionStore'],
models: ['Region'],
views: [
'grdGSMNotification'
],
refs: [
{
ref: 'filterPanel',
selector: 'panel'
}
],
init: function () {
// ReloadData();
this.control({
'grdgsmnotification actioncolumn[action=upload]': {
upload: this.upload
}
});
},
upload: function () {
console.log("Show form upload");
}
});