easyui datagrid 添加select控件
请问我要在columns里面添加一个select要怎么加进去代码如下:functionInitGird(){$('#tab_list').datagrid({title:...
请问我要在columns里面添加一个select要怎么加进去
代码如下:
function InitGird() {
$('#tab_list').datagrid({
title: '企业信息列表', //表格标题
url: location.href, //请求数据的页面
sortName: 'ID', //排序字段
idField: 'ID', //标识字段,主键
iconCls: '', //标题左边的图标
width: '80%', //宽度
height: $(parent.document).find("#mainPanle").height() - 10 > 0 ? $(parent.document).find("#mainPanle").height() - 10 : 300, //高度
nowrap: false, //是否换行,True 就会把数据显示在一行里
striped: true, //True 奇偶行使用不同背景色
collapsible: false, //可折叠
sortOrder: 'desc', //排序类型
remoteSort: true, //定义是否从服务器给数据排序
frozenColumns: [[//冻结的列,不会随横向滚动轴移动
{field: 'cbx', checkbox: true },
]],
columns: [[
{ title: '企业名', field: 'ComName', width: 100 },
{ title: '企业类型', field: 'ComTypeName', width: 100 },
{ title: '经营类型', field: 'ManageTypeName', width: 150 },
{ title: '企业领域', field: 'ComDomainName', width: 100 },
{ title: '企业规模', field: 'ComScaleName', width: 200 },
{ title: '所在地区', field: 'ComRegionName', width: 100 },
{ title: '状态', select: true, width: 150 },
{ title: '注册时间', field: 'ComRegDate', width: 150 },
{ title: '创建时间', field: 'CreateDate', width: 150 },
{ title: '查看', field: 'ID', width: 80, formatter: function (value, rec) {
return '<a style="color:red" href="javascript:;" onclick="EditData(' + value + ');$(this).parent().click();return false;">修改</a>';
}
}
]],
toolbar: "#tab_toolbar",
queryParams: { "action": "query" },
pagination: true, //是否开启分页
pageNumber: 1, //默认索引页
pageSize: 10, //默认一页数据条数
rownumbers: true //行号
});
} 展开
代码如下:
function InitGird() {
$('#tab_list').datagrid({
title: '企业信息列表', //表格标题
url: location.href, //请求数据的页面
sortName: 'ID', //排序字段
idField: 'ID', //标识字段,主键
iconCls: '', //标题左边的图标
width: '80%', //宽度
height: $(parent.document).find("#mainPanle").height() - 10 > 0 ? $(parent.document).find("#mainPanle").height() - 10 : 300, //高度
nowrap: false, //是否换行,True 就会把数据显示在一行里
striped: true, //True 奇偶行使用不同背景色
collapsible: false, //可折叠
sortOrder: 'desc', //排序类型
remoteSort: true, //定义是否从服务器给数据排序
frozenColumns: [[//冻结的列,不会随横向滚动轴移动
{field: 'cbx', checkbox: true },
]],
columns: [[
{ title: '企业名', field: 'ComName', width: 100 },
{ title: '企业类型', field: 'ComTypeName', width: 100 },
{ title: '经营类型', field: 'ManageTypeName', width: 150 },
{ title: '企业领域', field: 'ComDomainName', width: 100 },
{ title: '企业规模', field: 'ComScaleName', width: 200 },
{ title: '所在地区', field: 'ComRegionName', width: 100 },
{ title: '状态', select: true, width: 150 },
{ title: '注册时间', field: 'ComRegDate', width: 150 },
{ title: '创建时间', field: 'CreateDate', width: 150 },
{ title: '查看', field: 'ID', width: 80, formatter: function (value, rec) {
return '<a style="color:red" href="javascript:;" onclick="EditData(' + value + ');$(this).parent().click();return false;">修改</a>';
}
}
]],
toolbar: "#tab_toolbar",
queryParams: { "action": "query" },
pagination: true, //是否开启分页
pageNumber: 1, //默认索引页
pageSize: 10, //默认一页数据条数
rownumbers: true //行号
});
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询