首页 > 代码库 > easyUI 中datagrid 返回列隐藏方法

easyUI 中datagrid 返回列隐藏方法

easyui的datagrid方法返回的列,有的值不需要显示可以使用hidden(属性进行隐藏)

 

columns : [ [{
                    field : ‘bailClass‘,
                    title : ‘类别‘,
                    width : 50,
                    align : ‘center‘,
                    formatter : returnFtt
                },{
                    field : ‘agencyName‘,
                    title : ‘市场名称‘,
                    width : 50,
                    align : ‘center‘
                },{
                    field : ‘agencyId‘,
                    title : ‘市场ID‘,
                    width : 50,
                    align : ‘center‘,
                    hidden : true
                },{
                    field : ‘canUseMoney‘,
                    title : ‘可用余额‘,
                    width : 50,
                    align : ‘center‘
                }

 

easyUI 中datagrid 返回列隐藏方法