extjs重新激活grid_javascript – ExtJS 4及其新的MVC:grid:如何处理密钥?

我正在寻找一种方法来处理Grid中的键.

我密切关注这里的例子:

http://www.sencha.com/learn/architecting-your-app-in-ext-js-4-part-1

http://www.sencha.com/learn/architecting-your-app-in-ext-js-4-part-2

http://www.sencha.com/learn/the-mvc-application-architecture/

所以现在一切正常,但我想在网格中处理键.

所以我想在声明“this.control({})”中我应该添加另一个关于用户列表的事件,但似乎Grid没有“keypress”事件.

知道我应该怎么做(而且我应该如何处理新的MVC模式)?

Ext.define('GS.controller.Users', {

extend: 'Ext.app.Controller',

models: [

'User'

],

stores: [

'Users'

],

views: [

'user.List',

'user.Edit'

],

init: function () {

this.control({

/* (!) Actions in 'userlist' */

'userlist': {

selectionchange: this.userListSelectionChange,

itemdblclick: this.userEdit

},

'userlist button[action=create]': {

click: this.userCreate

},

'userlist button[action=delete]': {

click: this.userDelete

},

/* (!) Actions in 'useredit' */

'useredit button[action=create]': {

click: this.userCreateValidate

},

'useredit button[action=save]': {

click: this.userEditValidate

}

});

},

userListSelectionChange: function(grid, selections, options) {

var panel = grid.view.up('panel'),

button = panel.down('button[action=delete]');

button.setDisabled(selections.length === 0);

},

userCreate: function(button) {

/* Using Ext.create() to pass variable create:true

* instead of the shortcut:

* var view = Ext.widget('useredit');

*/

var view = Ext.create('GS.view.user.Edit', {

create:true

});

},

userCreateValidate: function(button) {

var win = button.up('window'),

form = win.down('form'),

values = form.getValues();

this.getUsersStore().add(values);

this.getUsersStore().sync();

win.close();

},

userEdit: function(grid, record) {

var view = Ext.widget('useredit');

view.down('form').loadRecord(record);

},

userEditValidate: function (button) {

var win = button.up('window'),

form = win.down('form'),

record = form.getRecord(),

values = form.getValues();

record.set(values);

win.close();

this.getUsersStore().sync();

},

userDelete: function(button) {

var panel = button.up('panel'),

selection = panel.getSelectionModel().getSelection()[0];

if (selection) {

var store = this.getUsersStore();

store.remove(selection);

store.sync();

}

}

});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值