zoukankan      html  css  js  c++  java
  • Extjs中给同一个GridPanel中的事件添加参数的方法

    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)
    }

  • 相关阅读:
    DNS智能双向解析怎么做?
    高防服务器如何选择性价比最高?
    20192416 实验四《Python程序设计》综合实践报告
    20192416实验三 《Python程序设计》实验报告
    20192416 《Python程序设计》实验二报告
    20192416 《Python程序设计》实验一报告
    2019-2020-1学期 20192416《网络空间安全专业导论》第十二周学习总结
    2019-2020-1学期 20192416《网络空间安全专业导论》第十一周学习总结
    2019-2020-1学期 20192416《网络空间安全专业导论》第十周学习总结
    2019-2020-1学期 20192416《网络空间安全专业导论》第九周学习总结
  • 原文地址:https://www.cnblogs.com/zrui-xyu/p/4615948.html
Copyright © 2011-2022 走看看