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

Kendo Calender Edit / Add pupop - How to set the Popup window Width.

1 Answer 93 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Jineesh
Top achievements
Rank 2
Jineesh asked on 16 Aug 2013, 08:45 AM
Hi,

      How to set the width of kendo Scheduler Add/Edit Popup window ?

1 Answer, 1 is accepted

Sort by
0
Dimiter Madjarov
Telerik team
answered on 16 Aug 2013, 10:27 AM
Hi Jineesh,


To achieve this you should bind to the edit event of the Scheduler and use the e.container parameter to manipulate the window.
E.g.
function edit(e) {
    var wnd = $(e.container).data("kendoWindow");
    wnd.setOptions({
        width: 800,
        height: 500
    });
}

I would also like to ask you to post your questions only once, so it would be easier for me and my colleagues to provide you better assistance. Thanks for the understanding.

 

Regards,
Dimiter Madjarov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Calendar
Asked by
Jineesh
Top achievements
Rank 2
Answers by
Dimiter Madjarov
Telerik team
Share this question
or