CheckBoxList - jQuery LigerUI API

jQuery LigerUI

参数列表

参数名 类型 描述 默认值
rowSize Int 每行显示表单数 4
valueField String 值成员字段名 'id'
textField String 显示成员字段名 'text'
valueFieldID String 值保存表单隐藏域 null
name String 复选框name null
split String 分隔符 ';'
data Object 数据 null
parms Object 异步数据请求参数 null
url String 异步数据请求地址 null
css String 附加className null
value String 初始化值 null
valueFieldCssClass String 隐藏域css NULL
ajaxType String    
urlParms String url附加参数,支持函数  
ajaxContentType String    

data参数 示例:

1 var dataGrid = [ 2 { id: 1, name: '李三', sex: '' }, 3 { id: 2, name: '李四', sex: '' }, 4 { id: 3, name: '赵武', sex: '' }, 5 { id: 4, name: '陈留', sex: '' }, 6 { id: 5, name: '陈留2', sex: '' }, 7 { id: 7, name: '陈留3', sex: '' }, 8 { id: 6, name: '陈留4', sex: '' } 9 ]; 10 $("#checkboxlist1").ligerCheckBoxList({ 11 data: dataGrid, 12 textField: 'name' 13 });