我在 JQGrid 中有一列。
{ name: 'Action', index: 'Action', width: 70, sortable: false, formatter: 'actions', formatoptions: { keys: true, editformbutton: false, editbutton: true, delbutton: false } }
我想在从 JQGrid 寻呼机按钮查看选定行时隐藏上面的列。有什么办法可以做到这一点?
我在 JQGrid 中有一列。
{ name: 'Action', index: 'Action', width: 70, sortable: false, formatter: 'actions', formatoptions: { keys: true, editformbutton: false, editbutton: true, delbutton: false } }
我想在从 JQGrid 寻呼机按钮查看选定行时隐藏上面的列。有什么办法可以做到这一点?
您需要将viewable: false
属性添加到您不想在“视图”对话框中显示的所有列。
您仅sortable: false
作为属性添加到Action
列。我建议您在使用的列中包含一些其他属性formatter: "actions"
:
frozen: true,
fixed: true,
resizable: false,
sortable: false,
search: false,
editable: false,
viewable: false
我通常为. 我包括了我通常使用formatter: "actions"
的所有上述属性(以及一些其他设置,如 defaultwidth
等)。formatoptions: { keys: true }
这样网格的代码会更小,可读性更好。