I have a button on a tabstrip which onclick clones the active tab in a new kendoWindow. The problem is, that I need a new browser window, not a Kendo one.
I tried the following:
I tried the following:
...
var clonedwin = jq(tab).clone().kendoWindow({
title: title,
actions: ["Close"],
modal: false,
width: "50%",
height: "600px",
visible: true,
draggable: true,
resizable: false,
position: {
top: "10%",
left: "30%"
}
}).data("kendoWindow");
var win = window.open(clonedwin,"_blank","left=200,top=235,width=815,height=470,scrollbars=auto");
...
The result is a new window with the error: "Unable to find web object file '[object Object]'" plus a new KendoWindow with the content from the tab.
Thank you in advance,
Syian