Tsvetomir Tsonev
Tsvetomir Tsonev
Could be fixed by storing the group expand state externally. /cc @elena-gancheva
Have you tried testing in production mode? Development mode is notorious for memory leaks.
This behavior is _mostly_ correct—otherwise the last occurrence would be on the day before the selected date. It does however pose a problem for all-day events and other events that...
I think the [Workbook.toDataURL](http://docs.telerik.com/kendo-ui/api/javascript/ooxml/workbook#methods-toDataURL) is the only method that relies on jsZip and is synchronous. We can replace it with an asynchronous version of the method that will work with...
Better late than never. We'll need to: * Replace all usages `toDataURL` with [`toDataURLAsync`](https://docs.telerik.com/kendo-ui/api/javascript/ooxml/workbook/methods/todataurlasync), most notably in the Spreadsheet. This method works with both jsZip 2 and 3. * Update...
One possible workaround (IE11+) is to add the following style, [see demo](https://dojo.telerik.com/UcUwewav): ```css .k-chart .k-selector, .k-chart .k-selector .k-mask, .k-chart .k-selector .k-selection, .k-chart .k-selector .k-selection-bg { pointer-events: none; } .k-chart .k-selector...
To add to this issue, rxjs-compat may be required by third-party libraries, not just by the application.
These all seem like customizations that should be done either with CSS or through events/callbacks. Covering all possible combinations with settings objects would escalate pretty quickly - e.g. make only...
Two issues would remain even if we come up with an intuitive API: * Defaults are defined by the theme. * It's not possible to customize the settings through themes....