码迷,mamicode.com
首页 > Web开发 > 详细

Extjs中给同一个GridPanel中的事件添加参数的方法

时间:2015-07-02 15:31:52      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

Extjs中给同一个GridPanel中的事件添加参数的方法:

this.isUse = new Ext.Action({
            text:‘启用‘,
            scope:this,
            handler:this.isUseWin.createDelegate (this,[1])
        });
        this.isNotUse = new Ext.Action({
            text:‘停用‘,
            scope:this,
            handler:this.isUseWin.createDelegate (this,[0])
 });

 

接收的时候:

isUseWin:function(e){
        /** 选中的记录 */
        var records = this.getSelectionModel().getSelections();
        /** 存放id的数组 */
        var array = [];
        if (records == null || records.length == 0) {
            Ext.MessageBox.show({
                        title : ‘警告‘,
                        icon : Ext.MessageBox.WARNING,
                        buttons : Ext.MessageBox.OK,
                        msg : ‘请选择一条的记录‘
                    });
            return false;
        }
        // 遍历记录将id放入数组
        Ext.each(records, function(record) {
            array.push(record.data.unitId);
        })
        Ext.MessageBox.confirm(‘提示‘,‘你确定要启用选中的记录吗?‘,function(button){
            if(button ==‘yes‘){
                Ext.Ajax.request({
                    url:this.useUrl,
                    method:‘POST‘,
                    params:{
                        unitIds:array.join(‘,‘),
                        isUsing:e
                    },
                    success:function(response,options){
                        var text = Ext.decode(response.responseText);
                        Ext.Msg.alert(‘提示‘,text.msg,function(){
                            this.store.reload();
                        },this);
                    },
                    failure:function(){
                        Ext.Msg.alert(‘提示‘,‘请求失败!‘);
                    },
                    scope:this
                });
            }
        },this)
}

Extjs中给同一个GridPanel中的事件添加参数的方法

标签:

原文地址:http://www.cnblogs.com/zrui-xyu/p/4615948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!