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.
window.openを使用してMVCページで子ポップアップを開きます。ポップアップを閉じるときに、ページ全体を更新せずに親Jqueryグリッドを更新する必要がありますか?
reloadGridを使用してグリッドを更新し、onbeforeunloadイベントを使用して、以下のコードのようにグリッドの更新をトリガーし、グリッドIDとウィンドウのURLをIDとURLに置き換えることができます。
var myWindow = window.open('your_url') myWindow.onbeforeunload = function(){ $("#your_grid_id").trigger("reloadGrid",[{current:true}]); }