最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Pop up the Kendo Window - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 6

Try 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

发布评论

评论列表(0)

  1. 暂无评论