一开始给的解决方案如下
$(‘#xx’).datagrid.(‘hideColumn’,’field’)
这也是easyui API中给出的解决方案,但是在这里并不管用,后来向组里的大神请教了以后,又换了另外一种方法
全部代码如下
{ field: ‘ck’, checkbox: true },
{
field: ‘LoginName’, title: ‘登录名’, align: ‘center’, width: 150
},
{
field: ‘UserName’, title: ‘显示名’, align: ‘center’, width: 100
},
{
field: ‘TelPhoneNum’, title: ‘手机号’, align: ‘center’, width: 150
},
{
field: ‘Telephone’, title: ‘办公电话’, align: ‘center’, width: 100
},
{
field: ‘RightOrgName’, title: ‘单位’, align: ‘center’, width: 150
},
{
field: ‘IP’, title: ‘IP地址’, align: ‘center’, width: 150
},
{
field: ‘EmailAddress’, title: ‘电子邮箱’, align: ‘center’, width: 200
},
{
field: ‘Sort’, title: ‘排序’, align: ‘center’, width: 200
}
]],
pagination: true,
rownumbers: true,
singleSelect: true,
queryParams: {
condition: Condition,
},
onLoadSuccess: function () {
if (getcheckDBS == "1" && oAppId != 9) {
$('td[field="Telephone"]').hide();
$('td[field="IP"]').hide();
$('td[field="EmailAddress"]').hide();
}
if (getcheckDBS == "1") {
$('td[field="Telephone"]').hide();
$('td[field="IP"]').hide();
$('td[field="EmailAddress"]').hide();
}
}
本文介绍了一种在使用EasyUI datagrid组件时遇到的问题及解决方案。原本尝试使用官方推荐的方法来隐藏表格中的某些列,但发现该方法无效。通过团队内部交流找到了新的解决办法,即通过jQuery直接选择要隐藏的单元格并将其隐藏。
1406

被折叠的 条评论
为什么被折叠?



