Hi,
my code doesn't work, it do not find a controller action because is located in a specific area of my MVC project.
Can I specify in url parameter what is the area name from which call the action method?
$("<div id = '10'/>").appendTo(document.body).kendoWindow({
name: "window",
resizable: true,
width: 100,
height: 100,
scrollable: false,
content: { url: 'Cliente/ClienteIndex' },
iframe: true,
modal: false,
title: 'title',
actions: ["Refresh", "Minimize", "Maximize", "Close"],
close: function (e) {
this.destroy();
}
});
my code doesn't work, it do not find a controller action because is located in a specific area of my MVC project.
Can I specify in url parameter what is the area name from which call the action method?
$("<div id = '10'/>").appendTo(document.body).kendoWindow({
name: "window",
resizable: true,
width: 100,
height: 100,
scrollable: false,
content: { url: 'Cliente/ClienteIndex' },
iframe: true,
modal: false,
title: 'title',
actions: ["Refresh", "Minimize", "Maximize", "Close"],
close: function (e) {
this.destroy();
}
});