I'm opening a kendo window with a ajax content and I'm also passing some data into the window as shown below.
Now within selectcontact.htm how do I access the op1 and op2 ? I have a kendo combobox thats bound to an oData service and I the need to pass op1 into the uri.
if (!window.data("kendoWindow")) {window.kendoWindow({content: {url: "selectcontact.htm",data: {op1: agencyId,op2: agencyName}},title: "Select a Contact",actions: ["Refresh", "Close"],visible: false,modal: true,close: onClose});
Now within selectcontact.htm how do I access the op1 and op2 ? I have a kendo combobox thats bound to an oData service and I the need to pass op1 into the uri.