I have pop up the Kendo Window. But it pops up only on first time.
And after closing the window it doesn't works again.
$("#open1").click(function() {
$("#win1").show().kendoWindow({
width: "300px",
height: "100px",
modal: true,
title: "Window 1"
});
});
Demo
Here is the window pop up which I have done.
I have pop up the Kendo Window. But it pops up only on first time.
And after closing the window it doesn't works again.
$("#open1").click(function() {
$("#win1").show().kendoWindow({
width: "300px",
height: "100px",
modal: true,
title: "Window 1"
});
});
Demo
Here is the window pop up which I have done.
Share Improve this question edited Oct 31, 2013 at 10:08 Rohan Kumar 40.6k11 gold badges80 silver badges110 bronze badges asked Oct 31, 2013 at 10:06 Rahul_RJRahul_RJ 1512 gold badges2 silver badges6 bronze badges1 Answer
Reset to default 6Try to use visible: false
from docs like,
$("#win1").kendoWindow({
width: "300px",
height: "100px",
modal: true,
title: "Window 1",
visible: false
});
$("#open1").click(function () {
$("#win1").data("kendoWindow").open();
});
Working Demo