Reputation: 1503
I couldnt find an event for the got focus for the Kendo window. My requirement is to refresh the grid data once it gets focus.
Upvotes: 2
Views: 1859
Reputation: 12846
Use jQuery:
$("#windowName").focusin(function() {
$("#gridName").data("kendoGrid").dataSource.read();
});
Upvotes: 0
Reputation: 771
Kendo UI is a jQuery-based UI.
There should be a focusin even for the element.
See http://api.jquery.com/focusin/
Upvotes: 2