Declined
Last Updated: 02 Jan 2026 11:13 by ADMIN
loring
Created on: 21 Jul 2021 10:39
Category: Editor
Type: Bug Report
0
Disable image and table resizing when contenteditable is false

Using contenteditbale=false to disable the Editor image and table resizing still works. 

Dojo to reproduce the problem:

https://dojo.telerik.com/acIhiqiN

Actual behavior:

Steps: 

1. Disable using the button

2. Try to resize the image - it can be resized

3. Try to resize the table- it can be resized

Expected:

Images and tables not to be resized

2 comments
ADMIN
Nikolay
Posted on: 02 Jan 2026 11:13

This behavior was originally reported over 4 years ago and has not received significant demand or follow-up from the community since then. Considering this and the availability of a workaround, we are unable to prioritize it over more impactful and widely requested improvements. 

If this limitation is still affecting your scenario, please share additional context or use cases. This will help us better assess the severity and reconsider prioritization in the future. Thank you! 

Regards,
Nikolay
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

ADMIN
Ianko
Posted on: 21 Jul 2021 10:42

Hi Loring,

Thank you for this bug report.

Here you are a workaround for the time being: https://dojo.telerik.com/@iankodj/akaxeceK

    var _initResizeHandles = kendo.ui.editor.ElementResizing.fn._initResizeHandles;

    var resizingInProgress = kendo.ui.editor.TableElementResizing.fn.resizingInProgress;
    
    kendo.ui.editor.ElementResizing.fn._initResizeHandles = function(){
      var body = this.options.rootElement;
      if(body.contentEditable === "false") return;
      _initResizeHandles.call(this);
    };

    kendo.ui.editor.TableElementResizing.fn.resizingInProgress = function () {
      var body = this.options.rootElement;
      if(body.contentEditable === "false") return true;
      resizingInProgress.call(this);
    }

Regards,
Ianko
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.