extjs CheckboxGroup

Posted mandy3651423

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs CheckboxGroup相关的知识,希望对你有一定的参考价值。

// 复选框
        var fxkGroup = new Ext.form.CheckboxGroup({
                    id : ‘fxkGroup‘,
                    xtype : ‘checkboxgroup‘,
                    name : ‘fxkGroup‘,
                    width : 350,
                    columns : 3, // 在上面定义的宽度上展示3列
                    items : [{
                                boxLabel : ‘分管副主任‘,
                                id : ‘T65B‘,
                                name : ‘fgfzr‘,
                                inputValue : "1"
                            }, {
                                id : ‘T65A‘,
                                boxLabel : ‘政治部主任‘,
                                name : ‘zzbzr‘,
                                inputValue : "2"
                            }, {
                                id : ‘hxjy‘,
                                boxLabel : ‘含下级院‘,
                                name : ‘hxjy‘,
                                inputValue : "3"
                            }]
                });
        this.FxkGroup = fxkGroup;

查询时

Search : function() {
        var val = ‘‘;
        // 获取通过checkboxgroup定义的checkbox值
        var fxkValue = Ext.getCmp(‘fxkGroup‘).getChecked();
        var array = new Array();
        Ext.Array.each(fxkValue, function(item) {
                    array.push(item.id);
                });
        for (var index = 0; index < array.length; index++) {
            if (index != array.length - 1) {
                val += "‘" + array[index] + "‘,";
            } else {
                val += "‘" + array[index] + "‘";
            }
        }
        this.baseParams.checkbox = val;
        this.Reload();
    },

在sql文件中

#set($checkbox = $request.getParameter("checkbox"))
 #if($checkbox && $checkbox != "")
 and
     zb.dmcod IN ($checkbox) 
 #end

以上是关于extjs CheckboxGroup的主要内容,如果未能解决你的问题,请参考以下文章

extjs CheckboxGroup默认选中问题

ExtJs中checkboxgroup 动态加载数据怎么弄的?

急求关于extjs 动态加载checkbox

extjs4.0 checkboxgroup控件如何取值

extjs 3.4 如何动态添加复选框到工具栏

如何为某些按钮添加监听器 extjs