[Solved] Disable table resizing

1 Answer 27 Views
Editor
Andreas
Top achievements
Rank 1
Andreas asked on 26 Feb 2026, 12:35 PM

Hi,

Can I somehow disable the table-resizing functionality in the Editor?
See attached image...

I do not want the resize handles that appears on all table-corners to be inserted at all in the editor html!

Have I missed some simple property or does this have to do with ProseMirror in some way?

Regards
Andreas

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 03 Mar 2026, 08:22 AM

Hi Andreas,

It is possible to hide the resize handles of the table with CSS:

<style>
    .k-editor-resize-handle { 
        display: none;
    }
</style>

However, this requires setting the Editor's EditMode parameter to Div: 

<TelerikEditor EditMode="@EditorEditMode.Div"
               Tools="@Tools"
               Height="550px">
</TelerikEditor>

Here's a REPL example for demonstration: https://blazorrepl.telerik.com/wKEnuHkC202wEzo739 

Regards,
Ivan Danchev
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.

Tags
Editor
Asked by
Andreas
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or