我的网格有一些隐藏属性为True的列(在红色边框中)。
我发现阻止这些列的方法显示在columnChooser对话框中。
我们可以在上面的截图中看到。当网格初始化时,我不想显示设置为invisible
(hidden = true
)的列(金额,税金)。有没有办法做到这一点?
请注意,该插件为column chooser jqgrid
。
答案 0 :(得分:1)
当您在jqGrid的hidden:true
中使用colModel
时,columnChooser会将这些列放在 Make All Visible Section 中。
为了避开这种情况,您需要在hidedlg : true
旁边colModel
设置hidden:true
。
请参阅documentation。
答案 1 :(得分:1)
您可以在hidedlg: true
中隐藏的列中定义columnChooser
属性(示例中的列amount
和tax
)