LayUI Table列的显示与隐藏可以通过CSS样式来控制,但是效果不是很满意。这里我通过修改列hide属性后重载表格来实现个别列的显示与隐藏。LayUI Table列的显示与隐藏可以通过CSS样式来控制,但是效果不是很满意。这里我通过修改列hide属性后重载表格来实现个别列的显示与隐藏。 1.单独定义表格形式: let cols1 = [ { type: 'numbers', title: '序号', width: 60, align: 'center' } , { field: 'MerchantNo', tit
1.单独定义表格形式:
let cols1 = [
{ type: 'numbers', title: '序号', width: 60, align: 'center' }
, { field: 'MerchantNo', title: '单位编号', width: 180, align: 'center' }
, { field: 'MerchantName', title: '单位名称', width: 180, align: 'center' }
, { field: 'Province', title: '省份', width: 120, align: 'center' }
, { field: 'Contacts', title: '联系人', width: 120, align: 'center' }
, { field: 'ContactPhp', title: '联系电话', width: 120, align: 'center' }
, { field: 'Fox', title: '传真', width: 100, align: 'center' }
, { field: 'EMail', title: '邮箱地址', width: 120, align: 'center' }
, { field: 'Address', title: '公司地址', width: 120, align: 'center' }
, { field: 'Synopsis', title: '公司简介', align: 'center' }
, { field: 'AdminCount', title: '允许账号数目', width: 100, align: 'center', hide: true }
, { field: 'Duetime', title: '有效期', width: 110, align: 'center', hide: true }
, { field: 'IsEnable', title: '状态', width: 100, align: 'center', templet: '#IsEnabledTpl' }
, { fixed: 'right', title: '操作', width: 125, align: 'center', toolbar: '#barOperation' }
];
2.根据需求修改列的属性:
var isReload = false;
if (res[0]['ShowOther'] == '0') {
if (!cols1[10].hide) {
isReload = true;
}
cols1[10].hide = true;
cols1[11].hide = true;
} else {
if (cols1[10].hide) {
isReload = true;
}
cols1[10].hide = false;
cols1[11].hide = false;
}
3.对表格重载:
if (isReload) {
insTb.reload({
cols: [cols1]
});
}
沃梦达教程
本文标题为:layui table使用hide属性对列进行显示与隐藏
基础教程推荐
猜你喜欢
- 解决ajax的delete、put方法接收不到参数的问题方法 2023-02-23
- 深入浅析Jsonp解决ajax跨域问题 2022-12-28
- 基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽) 2023-02-01
- 分页技术原理与实现之无刷新的Ajax分页技术(三) 2023-01-20
- Vue+WebSocket实现在线聊天 2023-10-08
- 关于 css:WebKit (iPad) CSS3: 背景过渡闪烁 2022-09-21
- ExtJS 3.x DateField menuListeners 显示/隐藏 2022-09-15
- vue的 Mixins (混入) 2023-10-08
- 第7天:CSS入门 2022-11-04
- ECSHOP中实现ajax弹窗登录功能 2023-01-31