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.
次の構造の行を含むグリッドを作成しようとしています。
item name, icon for delete, icon for sharing.
JQGridを使用しようとしていますが、列名を非表示にする方法が見つかりません(必要ではなく、サーバーからのデータのみが必要です)。
列名を表示せずにJqGridを作成できることをご存知ですか?助けることができる他の選択肢はありますか?
ありがとう、リオール
やり方が分かった...
firebug Iv'e を使用すると、JQGrid がグリッドの div 名を次のように命名していることがわかりましたgview_gridame。だから使って
gview_gridame
$('#gview_MyGridName .ui-jqgrid-hdiv').hide();
特定のグリッドからヘッダーを削除します。