Skip to content

Instantly share code, notes, and snippets.

@NickersF
Created February 22, 2023 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickersF/c8669e8985409fd03d356418a10cf733 to your computer and use it in GitHub Desktop.
Save NickersF/c8669e8985409fd03d356418a10cf733 to your computer and use it in GitHub Desktop.
Popup editor DD list wrapper event handlers
// Setup wrapper events
popupEditorDropDownWrappers.bind("focus", (e) => {
console.log(e);
let currDDList = $(e.currentTarget).children().eq(2).data("kendoDropDownList");
if (currDDList != undefined) {
console.log(currDDList);
}
});
popupEditorDropDownWrappers.bind("blur", (e) => {
//console.log(e);
let currDDList = $(e.currentTarget).children().eq(2).data("kendoDropDownList");
if (currDDList != undefined) {
console.log(currDDList);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment