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.
現在の結果セットに適用されたフィルターパラメーターを表すオブジェクトをjqGridから取得する方法はありますか?はいの場合、後でこのオブジェクトをグリッドに適用する方法はありますか?
私は通常postDataグリッドのパラメータを読みますgrid.getGridParam('postData');
postData
grid.getGridParam('postData');
filtersグリッドの現在のフィルターを含むという文字列プロパティがあります(これはjsonテキストです)。
filters
変更してから、を使用してグリッドに適用できます。grid.setGridParam('postData', postData);
grid.setGridParam('postData', postData);