El código necesario para crear un window es este:
Cita:
Pasa que en el iframe donde se carga el content, necesito hacer una redireccion y como no quiero que afecte a toda la página, me gustaria redireccionar solo al fram. Es por eso que necesito el nombre o un identificador del iframe.var window2 = $("#window2"),
undo2 = $("#node_pjpersons").bind("dblclick", function(){
window2.data("kendoWindow").center().open();
});
if (!window2.data("kendoWindow")) {
window2.kendoWindow({
actions: ["Refresh", "Close"],
width: "615px",
height:"600px",
title: "My Content",
visible:false,
content: "/content/",
resizable: false,
refresh: onRefresh,
iframe: true,
close: onClose
});
}
undo2 = $("#node_pjpersons").bind("dblclick", function(){
window2.data("kendoWindow").center().open();
});
if (!window2.data("kendoWindow")) {
window2.kendoWindow({
actions: ["Refresh", "Close"],
width: "615px",
height:"600px",
title: "My Content",
visible:false,
content: "/content/",
resizable: false,
refresh: onRefresh,
iframe: true,
close: onClose
});
}
Alguna idea?
En stackoverflow encontre esto:
http://stackoverflow.com/questions/1...cess-in-iframe
Pero la verdad que no se como implementar esto: top.frames["main"].$("#window").data("kendoWindow");