I want to show a Kendo window, type something in a textbox in the window, and return the value from to the parent page. How can I do this?
My window definition.
<kendo-window name="InstallerSearch"              title="Search for Installer"              draggable="true"              resizable="true"              width="1100"              height="550"              modal="true"              visible="false"              on-close="onClose"              actions="actions"              iframe="true">    <content>        loading...    </content>    <popup-animation enabled="true" /></kendo-window>
JavaScript to open window
function selectInstaller() {    var window = $("#InstallerSearch").data("kendoWindow");    window.refresh({        url: "@Url.Content("/Admin/Installers/Search/")"    });    window.open();    window.center();}
Razor page content for the window
Installer Name<br /><input name="InstallerName" id="InstallerName" type="text" class="form-control-md" />
JavaScript for the close where I want to get the value in the textbox in the window but user input is undefined.
function onClose() {    var userinput = $("#InstallerName").val();    alert(userinput);}
