How to set the width of kendo Scheduler Add/Edit Popup window ?
1 Answer, 1 is accepted
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!