Hi
How is the correct way to get some return value from a modal window that contains "external" HTML loaded with the "content:" property?
in page1.html I create my window:
page2.html is sometyhing like this:
After the window is closed, how can I access the value of #number ?
Thank you
How is the correct way to get some return value from a modal window that contains "external" HTML loaded with the "content:" property?
in page1.html I create my window:
<div id="kw" /> var kendoWindow = $("#kw").kendoWindow({ content: "Page2.html", close: function (e) { alert('closed'); } });page2.html is sometyhing like this:
<input id="number" value="123" /><buton id="ok">OK</button>After the window is closed, how can I access the value of #number ?
Thank you