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.
ドロップダウンリストに次のデータ構造があります。
External Test Test2 Internal Internal2 Internal3
フィルター ドロップダウンから親アイテムを選択すると、グリッド内の親アイテムと子アイテムの両方を取得しようとしています。
例: External を選択する場合、jqgrid で External、Test、および Test2 を取得したいと考えています。
これは何らかの方法で可能ですか?
jqgridの初期化設定はわかりませんが、次のようなダーティハックを行うことができます
$('parent selector').click(function () {$(this).children().click(); return true;});
または、jqgridapiを使用してデータをロードします。