Hello Everyone,
I'm using kendo.ui.Window in my project which is run on mobile,
the window widget default is opened as maximum, it's perfect when the device is vertical,
but when I rotate the device to horizontal, sometimes it work fine, but sometimes the window widget is not full fill the screen, it will display like this
https://drive.google.com/open?id=1Wgl81bXRdFSwtSU5lebVWdNSoiAZajPH
is it possible to solve this problem programmatically?
here is my code:
var
myWindow = $(
'#chart-dialog'
);
myWindow.kendoWindow({
width: 450,
title:
"QC Trend Chart - Test No:"
,
visible:
false
,
closable:
false
,
modal:
false
,
content:
''
,
actions: [
"Close"
],
});
Thanks for your help !!