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.
剣道ウィンドウの取得フォーカスのイベントが見つかりませんでした。私の要件は、フォーカスを取得したらグリッド データを更新することです。
Kendo UI は jQuery ベースの UI です。
要素に対してもfocusinが必要です。
http://api.jquery.com/focusin/を参照してください。
jQuery を使用します。
$("#windowName").focusin(function() { $("#gridName").data("kendoGrid").dataSource.read(); });