Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经用 Json 数据加载了一个 jqGrid。
我现在需要做的是允许最终用户仅显示在四列中的任何一列中具有空值的行。
假设以下网格
col1|col2|col3| a b a b c
我希望用户能够单击一个按钮并仅显示第一行。
我对 jqGrid 很陌生,所以在回复时请记住这一点。
谢谢
您可以根据 afterInsertRow 事件中的空值来实现显示或隐藏列。
尝试这个
afterInsertRow: function(rowid,rowdata,rowelem){ if(rowdata['col1']!=null && rowdata['col2']!=null && rowdata['col1']==null ){ $("#"+rowid).hide(); } },