We have upgraded KendoUI and have found that kendo window has stopped to size properly.
In the old implementation window set dimensions like this:
_dimensions: function() { ... if (options.width) { wrapper.width(options.width); } if (options.height) { wrapper.height(options.height); } ... }
And here is a new implementation:
_dimensions: function() { ... if (options.width) { wrapper.width(constrain(parseInt(options.width, 10), options.minWidth, options.maxWidth)); } if (options.height) { wrapper.height(constrain(parseInt(options.height, 10), options.minHeight, options.maxHeight)); } ... }
Thus nothing but pixels are supported. Earlier we often used 'em' units to define dialog sizes. There was no reason to restrict it like this. That's very unfortunate.
'em'
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, super, u