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 窗口的焦点事件。我的要求是一旦获得焦点就刷新网格数据。
Kendo UI 是一个基于 jQuery 的 UI。
即使是元素也应该有一个焦点。
见http://api.jquery.com/focusin/
使用 jQuery:
$("#windowName").focusin(function() { $("#gridName").data("kendoGrid").dataSource.read(); });