ListBox - jQuery LigerUI API

jQuery LigerUI

参数列表

参数名 类型 描述 默认值
isMultiSelect Bool 是否多选 null
isShowCheckBox Bool 是否显示复选框 null
columns Array null
width Int 宽度 200
height Int 高度 100
valueField String 值成员字段名 'id'
textField String 显示成员字段名 'text'
valueFieldID String 值保存表单隐藏域 null
split String 分隔符 null
data Object 数据 null
parms Object 异步数据请求参数 null
url String 异步数据请求地址 null
render Function 自定义html函数 null
css String 附加class name null
value String 初始化值 null
valueFieldCssClass String 隐藏域css NULL
urlParms String url传承(支持函数) null
ajaxContentType String ajax contentType null
ajaxType String    

columns参数 示例:

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 var dataGridColumns = [ 11 { header: 'ID', name: 'id', width: 20 }, 12 { header: '名字', name: 'name' }, 13 { header: '性别', name: 'sex' } 14 ]; 15 $("#listBox1").ligerListBox({ 16 data: dataGrid, 17 textField: 'name', 18 columns: dataGridColumns, 19 isMultiSelect: true, 20 isShowCheckBox: true, 21 width: 200,height:140 22 });