Hello ,
I have Kendo modal window coming up on button click like this
wnd = $("#Add").kendoWindow({
title: "test",
actions: ["Close"],
content: direction,
width: "800px",
height: "600px",
visible: false,
Draggable: false,
modal: true
}).data("kendoWindow");
}
//wnd.refresh(direction);
wnd.center();
wnd.resi = false;
wnd.open();
How can i stop window from resizing? draggable false do not help
Anamika
I have Kendo modal window coming up on button click like this
wnd = $("#Add").kendoWindow({
title: "test",
actions: ["Close"],
content: direction,
width: "800px",
height: "600px",
visible: false,
Draggable: false,
modal: true
}).data("kendoWindow");
}
//wnd.refresh(direction);
wnd.center();
wnd.resi = false;
wnd.open();
How can i stop window from resizing? draggable false do not help
Anamika