This is a migrated thread and some comments may be shown as answers.

Display Resizing Handle for Editor

3 Answers 271 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Raymond
Top achievements
Rank 1
Raymond asked on 09 Feb 2015, 04:09 AM
I found the following style to display the sizing handle for a Kendo Editor;

/*
    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.

3 Answers, 1 is accepted

Sort by
0
Accepted
Alex Gyoshev
Telerik team
answered on 11 Feb 2015, 09:34 AM

Hello Raymond,

The CSS resize property is not supported in IE at this time. In order to achieve this, you need to use JavaScript to enable resizing, perhaps utilizing the kendoResizable. See this page for a sample solution. This is a feature that is requested on UserVoice, so it is likely to land in future releases.

Regards,
Alex Gyoshev
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Raymond
Top achievements
Rank 1
answered on 11 Feb 2015, 08:45 PM
Thanks Alex - I will have a look at the sample project.
0
Raymond
Top achievements
Rank 1
answered on 08 Mar 2015, 10:07 PM
Hi Alex,

Finally got a chance to implement this today and it worked a treat.

Thanks,

Ray
Tags
Editor
Asked by
Raymond
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Raymond
Top achievements
Rank 1
Share this question
or