This is a migrated thread and some comments may be shown as answers.

KendoUI Window Stopped Working with kendo.web.min.js v2012.3.1114

1 Answer 86 Views
Window
This is a migrated thread and some comments may be shown as answers.
Randy
Top achievements
Rank 1
Randy asked on 26 Nov 2012, 04:35 PM
My project has two windows and both were working with v2012.2.831, but quit when I replace kenow.web.min.js with v2012.3.1114. It still works in IE, but now FireFox and Chrome.

I think I am using the windos in a normal manner.

I open the window with:
function labelEmail(trackingNumber) {
    var kendoWindow = $("#emailWindow").data("kendoWindow");
    kendoWindow.open();
    kendoWindow.center();
    kendoWindow.toFront();
    //$("#txtLabelEmail_Body").kendoEditor({
    //    width: "300px",
    //    height: "150px"
    //});
}

In Document Ready section I have:
    $("#emailWindow").kendoWindow({
        width: "575px",
        height: "550px",
        visible: false,
        title: "Email Label"
    });

nd I have stripped the window to as little as

<div id="emailWindow" style="position:relative; padding: 5px;" >
        <p>Please enter an email address, subject and a brief note to go along with the email.</p>
</div>

I can copy kendo.web.min.js v2012.2.831, refresh and it works. When I put kendo.web.min.js v2012.3.1114 back it stops. No error on the FireFox counsole. I can put breakpoints in and see that the open gets fired, but the screen does not change.

Thanks
Randy Miller

1 Answer, 1 is accepted

Sort by
0
Randy
Top achievements
Rank 1
answered on 26 Nov 2012, 04:43 PM
It looks like v2012.3.1121 fixed it.

I just downloaded it and didn't think to check for internal builds.

Sorry for the extra post.
Randy
Tags
Window
Asked by
Randy
Top achievements
Rank 1
Answers by
Randy
Top achievements
Rank 1
Share this question
or