C# MVC アプリで Jqgrid を使用しています。すべてが機能します。ただし、アプリケーションが実行されると、ビューは生の HTML (div タグなど) を表示し、画面は Jqgrid で再描画されます。グリッドが完全に描画される前に、これらの div タグを非表示にする方法はありますか? ありがとう。
質問する
186 次
1 に答える
0
Say your grid is encapsulate in a Div with id of myGrid.
What you can do is in document ready event hide this div using $(‘# myGrid’).hide() and hookup into gridComplete event of jqGrid and re-display the #myGrid.
To be frank I have not done this as I have never encountered the scenario you described, but based on what described, it should work.. Let us know how it went..
Cheers
于 2013-02-03T12:32:48.570 に答える