I found the following style to display the sizing handle for a Kendo Editor;
And this works well for Google Chrome but I can't get it to display in IE11 - the sizing handle doesn't display and attempting to resize the Editor by clicking and dragging in the bottom-left corner doesn't work.
Can anyone advise what I have to do to get it to work in IE11.
Thanks in advance.
/* Kendo Editor styles to support resizing*/table.k-editor .k-content { resize: vertical;}.editor-wrap { position: relative;} .editor-wrap .k-overlay { position: absolute; opacity: 0; z-index: 1; } .editor-wrap .k-resize-se { position: absolute; z-index: 2; bottom: 6px; right: 6px; height: 26px; width: 26px; } .editor-wrap > .k-editor { height: 100%; }And this works well for Google Chrome but I can't get it to display in IE11 - the sizing handle doesn't display and attempting to resize the Editor by clicking and dragging in the bottom-left corner doesn't work.
Can anyone advise what I have to do to get it to work in IE11.
Thanks in advance.