easyui combobox 带 checkbox 亲自验证

$(‘#cc‘).combobox({
                url:‘combobox_data1.json‘,
                method:‘get‘,
                valueField:‘id‘,
                textField:‘text‘,
                panelHeight:‘auto‘,
                multiple:true,
                formatter: function (row) {
                    var opts = $(this).combobox(‘options‘);
                    return ‘<input type="checkbox" class="combobox-checkbox">‘ + row[opts.textField]
                },
                onLoadSuccess: function () {
                    var opts = $(this).combobox(‘options‘);
                    var target = this;
                    var values = $(target).combobox(‘getValues‘);
                    $.map(values, function (value) {
                        var el = opts.finder.getEl(target, value);
                        el.find(‘input.combobox-checkbox‘)._propAttr(‘checked‘, true);
                    })
                },
                onSelect: function (row) {
                    //console.log(row);
                    var opts = $(this).combobox(‘options‘);
                    var el = opts.finder.getEl(this, row[opts.valueField]);
                    el.find(‘input.combobox-checkbox‘)._propAttr(‘checked‘, true);
                },
                onUnselect: function (row) {
                    var opts = $(this).combobox(‘options‘);
                    var el = opts.finder.getEl(this, row[opts.valueField]);
                    el.find(‘input.combobox-checkbox‘)._propAttr(‘checked‘, false);
                }
            });

时间: 2024-10-15 20:24:37

easyui combobox 带 checkbox 亲自验证的相关文章

easyui combobox with checkbox item

$('#cc').combobox({ url:'combobox_data1.json', method:'get', valueField:'id', textField:'text', panelHeight:'auto', multiple:true, formatter: function (row) { var opts = $(this).combobox('options'); return '<input type="checkbox" class="

easyui中带checkbox框的tree

1 var data = [{ 2 "id": 1, 3 "checked":true, 4 "text": "系统菜单", 5 "children": [{ 6 "id": 11, 7 "text": "用户管理", 8 "checked":true, 9 "children": [{ 10 "i

表单(上)EasyUI Form 表单、EasyUI Validatebox 验证框、EasyUI Combobox 组合框、EasyUI Combo 组合、EasyUI Combotree 组合树

EasyUI Form 表单 通过 $.fn.form.defaults 重写默认的 defaults. 表单(form)提供多种方法来执行带有表单字段的动作,比如 ajax 提交.加载.清除,等等.当提交表单时,调用 'validate' 方法来检查表单是否有效. 用法 创建一个简单的 HTML 表单.构建表单并给 id.action.method 赋值. <form id="ff" method="post"> <div> <lab

[Ext JS 4] 实战之多选下拉单 (带checkbox) 续 - 带ALL 选项

前言 在 [Ext JS 4] 实战之多选下拉单 (带checkbox) 这一篇中有介绍如何开发带有checkbox 的多选菜单. 但是实际项目开发过程中, 用户的需求也是不断精进的. 使用淘宝或是其他网站购物车功能的用户对全选就特别习惯, 所以他们也希望在下拉单中也能有  "ALL" 这样的选项. 但是Extjs 本身提供的多选下拉单,功能比较有限. 之前有扩充过带 checkbox, 现在又要多扩充一个 "ALL" 选项了. 要求是: 1. 选中"AL

EasyUI Combobox组合框(模糊搜索、默认值绑定)

EasyUI Combobox组合框是个比较好用的前端组件,例如它支持本地搜索和远程搜索,这样就可以免去自己写模糊查询.基本使用方式如下: <input id="cc" name="dept" value="aa"> $('#cc').combobox({ url:'JsonData.ashx', valueField:'id', //表单值 textField:'text', //表单文本 mode:'local', //本地搜索

【转】带checkbox的ListView实现(二)——自定义Checkable控件的实现方法

原文网址:http://blog.csdn.net/harvic880925/article/details/40475367 前言:前一篇文章给大家展示了传统的Listview的写法,但有的时候我们并不想在DataHolder类中加一个标识是否选中的checked的成员变量,因为在项目开发中,大部分的ListItemLayout布局都是大家共用的,有些人根本不需要checkbox控件,所以会在初始化的时候把这个控件给隐藏掉,但我们的DataHolder在构造的时候以及ListItemAdapt

easyui combobox 本地数据实现输入中文拼音简码过滤数据

<pre name="code" class="html"><input class="easyui-combobox" name="language" data-options=" data: baseData.emp.ck, width: 105, height: 26, valueField: 'id', textField: 'text', inputCode: 'inputCode', /

easyui combobox开启搜索自动完成功能

combo.json [{ "id":-1, "text":" ", "spell":"" },{ "id":1, "text":"类型1", "spell":"lx1" },{ "id":2, "text":"类型2", "spell&q

Jquery Easyui框架中常用的验证

对于validatebox空间,验证其输入字符长度的最大值是否超出数据库中设置的字段长度.方法如下: 1 /** 2 * 验证输入字符长度 3 */ 4 $.extend($.fn.validatebox.defaults.rules, { 5 maxLength: { 6 validator: function(value, param){ 7 if(value.length >= param[0]) { 8 // showMsg("输入信息长度不能超过"+ param[0]