Completed
Last Updated: 12 Dec 2023 09:01 by ADMIN
Created by: Gerke van den Akker
Comments: 0
Category: Editor
Type: Bug Report
1

Bug report

The <source> tag in the Editor gets closed incorrectly. It's a void element, so it should either close itself or not have a closing tag at all. To quote MDN:

The element is a void element, which means that it not only has no content but also has no closing tag. That is, you never use "</source>" in your HTML.

--- <source>: The Media or Image Source element

Reproduction of the problem

Follow these steps:

  • Create an editor with "viewHtml" enabled in the toolbar, e.g.:
$("#editor").kendoEditor({ tools: ["viewHtml"] });
  • Click the </> button to open the "view HTML" modal;
  • Update the HTML with this snippet:
<picture>
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.webp" type="image/webp" />
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.png" type="image/png" />
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.jpg" type="image/jpg" />
    <img src="https://picsum.photos/id/0/300/200.jpg" width="300" height="200" />
</picture>
  • Click the "Update" button in the HTML modal;
  • Now click the </> button again to view the HTML, and you'll notice that all <source> tags now have a </source> closing tag added.

Current behavior

All the <source> get closing tags (</source>), which makes the HTML invalid as it's a void element. Above snippet would get turned into this (indented for readability):

<picture>
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.webp" type="image/webp"></source>
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.png" type="image/png"></source>
    <source media="(min-width: 0px)" srcset="https://picsum.photos/id/0/300/200.jpg" type="image/jpg"></source>
    <img src="https://picsum.photos/id/0/300/200.jpg" width="300" height="200" />
</picture>

Expected/desired behavior

The <source> should not get a closing tag, but should either close themselves, or not be closed at all.

Environment

  • Kendo UI version: 2023.2.829
  • jQuery version: 3.4.1
  • Browser: [all]
Completed
Last Updated: 23 Dec 2022 14:14 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)

Bug report

If the Editor ColorPickers are defined as gradient instead of palette, it does not render buttons and input.

Regression introduced with 2021.1.224

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/eSuFUVIK/5
  2. Open one of the ColorPickers

Current behavior

No input and buttons are rendered.

Expected/desired behavior

There should be input and buttons.

Environment

  • Kendo UI version: 2022.3.1109
  • Browser: [all]
Completed
Last Updated: 21 Jan 2020 08:37 by ADMIN
Completed
Last Updated: 26 Jan 2024 14:19 by ADMIN

Bug report

The resize handlers in Editor are visible after an image has been deleted

Reproduction of the problem

  1. Open the Demo - https://demos.telerik.com/kendo-ui/editor/index
  2. Select the image and delete it using 'Delete' button
  3. Press Ctrl+Z and then delete the image again

Current behavior

The image disappears, but the resize handlers remain visible

Expected/desired behavior

The resize handlers should be hidden when an image is deleted.

Workaround

<script>
var editor = $('#editor').kendoEditor().data('kendoEditor');

$(editor.body).keydown(function(e){
     if(e.key === "Delete"){    
          $(editor.body).find('.k-element-resize-handle-wrapper').hide()
     }
})
</script>

Dojo

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [all ]
Completed
Last Updated: 03 Feb 2017 10:59 by ADMIN
Created by: Goran
Comments: 3
Category: Editor
Type: Feature Request
1
I was using save and edit buttons in RadEditor on ASP.NET Ajax extensivelly. Now, I've moved to MVC and noticed that these buttons don't exist at all!!! It's very weird. Ok, save functionality can be achieved fairly easily, but printing the content of an editor not much.
I assumed that, when you were building MVC controls you would deliver the same functionality as in Ajax controls. 
Anyway, adding these buttons to editor tools would be great.
Completed
Last Updated: 28 Feb 2020 08:05 by ADMIN
Created by: Imported User
Comments: 1
Category: Editor
Type: Feature Request
1
Currently when inside a table, the functionality for adding more tables disappears and is replaced by the table edit tools, however in our software tables are used to layout the HTML rendered by the editor, which prevents users adding tables at all. We need to keep ours set up this way and cannot switch to a CSS way of building the HTML :(
Completed
Last Updated: 18 Jul 2016 11:42 by ADMIN
Created by: Marc
Comments: 3
Category: Editor
Type: Feature Request
1
I use the Kendo Editor with inline mode. As soon as I paste some text from clipboard to the editor, the editor scrolls to the end. When the document ist very large, then you have to scroll back to the position where the cursor was located before pasting. Very difficult to work.
Completed
Last Updated: 03 Jun 2021 14:12 by ADMIN
Release 2021.R2.SP.next

Bug report

Reproduction of the problem

Dojo example. Video available in ticket id: 1496525 (first post).

  1. Click at the end of line2 in paragraph1
  2. Press Enter
  3. Type in some text, e.g., "paragraph2"
  4. Press Shift + Enter

Current behavior

Two new lines are created instead of one.

Expected/desired behavior

One new line is created.

Environment

  • Kendo UI version: 2020.3.1118
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 28 Sep 2020 08:28 by ADMIN
Release 2020.R3.SP.next
Created by: Mitchell
Comments: 1
Category: Editor
Type: Bug Report
1

A tester of ours noticed a bug that completely breaks the editor until the page is refreshed.

 

  • Click "Insert Hyperlink"
  • Add a link
  • Add a space in the "Text" field
  • Click "Insert"

Script error "Cannot read property 'nodeType' of null" in the console. None of the buttons work until the page is refreshed.

 

Attached is a video example tested with Dojo editor. Thanks!

Completed
Last Updated: 17 Jan 2024 11:12 by ADMIN

Bug report

The Editor table wizard does not apply styling to all cells

Reproduction of the problem

  1. Open this demo
  2. Select February Actual cell
  3. Open table wizard
  4. Select the Cell tab
  5. Create a border - for example, 6px double red border, click OK

Current behavior

The specified border is not applied. Selecting the February header instead and repeating the steps above applies the border styling

Expected/desired behavior

The styling applied through the wizard should be applied to the table cell

Environment

  • Kendo UI version: 2020.1.406
  • Browser: [all]
Completed
Last Updated: 16 Mar 2021 09:51 by ADMIN
Release 2019.R3.SP1

Bug report

Reproduction of the problem

Dojo example.

  1. Copy a word
  2. Click in the Editor after "Location" or "Date"
  3. Press Enter
  4. Press Ctrl + V to pasted the copied text.

Current behavior

The Editor adds an extra

element after the nested table:

<p>&nbsp;</p>

Expected/desired behavior

No empty paragraph is added on pasting content.

Environment

  • Kendo UI version: 2019.3.917
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 04 Jan 2023 12:55 by ADMIN
Release Lost+Found
Created by: Dmitry
Comments: 1
Category: Editor
Type: Bug Report
1

Bug report

The fontName tool shows an incorrect font name and gets focus after text selection.

Steps to reproduce 

* Open and run https://dojo.telerik.com/OHOHikin demo.

* Set the cursor to Line1, note an incorrect value in the fontName dropdown.

* Select/highlight Line4, choose Arial in the fontName dropdown and note an incorrect value in the dropdown.

* Put the cursor at the end of Line6, select Line4 and Line5 and Line6 using the mouse. Note that the keyboard focus has shifted to the fontName dropdown.

 

Completed
Last Updated: 16 Sep 2019 14:24 by ADMIN
Release 2019.R3
Created by: Pål
Comments: 0
Category: Editor
Type: Bug Report
1

Bug report

Unable to resize a column inside a table inserted in Editor

This is a regression represented after Kendo UI 2019.2.619

Reproduction of the problem

  1. Open this Dojo and run it
  2. Add a table(no matter of its size)
  3. Try to resize a column, not the whole table. No matter of the direction you resize the column its board is moving to the left
  4. When you release the mouse button the column is resized in a totally different way than the resize indicator showed

Current behavior

Please check this video for more details

Expected/desired behavior

The columns inside a table should be resizable.

Environment

  • Kendo UI version: 2019.2.619
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 28 Feb 2024 07:27 by ADMIN
Created by: Jitender
Comments: 1
Category: Editor
Type: Bug Report
1

1. use safari browser

2. Go to https://demos.telerik.com/kendo-ui/editor/index

3.  copy a long text over 25 characters

4. paste the copied text in the editor

5. notice that the scroll takes you to the bottom of the page, The same is not noticed in any other browser.

6. This is very inconvenient. 

 
Completed
Last Updated: 28 Nov 2019 15:31 by ADMIN
Release 2019.R2.SP1
Created by: Daniel
Comments: 1
Category: Editor
Type: Bug Report
1

Dear Telerik team,

 

when I apply a HTML-text with a paragraph to kendo editor it does show a vertical scroll bar in IE. Which is wrong. Chrome does not. See this dojo: https://dojo.telerik.com/AsuNiPuh/4

 

How can I fix this?

 

Kind regards

Daniel

Completed
Last Updated: 13 May 2019 16:22 by ADMIN
Release 2019.R2

Steps to reproduce:

1. Go to https://demos.telerik.com/kendo-ui/editor/index using IE11

2. Delete a sentence in the editor by repeatedly pressing the backspace key.

Result:

The characters are deleted slowly with noticeable lag and jank.

Investigation

The following profile shows the FPS drop when you repeatedly press backspace.

 

I believe the call to refreshTools is expensive (for IE) and it is invoked on every keyup for backspace.

Completed
Last Updated: 26 Jan 2018 16:47 by ADMIN
Created by: Imported User
Comments: 2
Category: Editor
Type: Feature Request
1
I love that most of the big Kendo Components are now available to use with Vue Wrappers but the Kendo Editor is still not supported. The Kendo Editor is one of the best WYSIWYG editors that I've used but unfortunately I'm not able to take full advantage of it in my current Vue application.
Completed
Last Updated: 02 Mar 2020 12:53 by ADMIN
With current editor, after you copy table which has merged cells to editor, merged cells are gone, Cells are shifted forward.
Completed
Last Updated: 22 Jan 2020 09:49 by ADMIN
ADMIN
Created by: Sherman
Comments: 2
Category: Editor
Type: Feature Request
1
Being a Telerik Evangelist & Sales Engineer, I do constantly development with Kendo UI. And I just thought it will be good to put this idea out here, so everyone whose also using the Editor control can also vote or comment on this feedback.

I've done research on the API documentation and also looking at the demo samples. If any of you have noticed, the "Folder" item in our ImageBrowser shows a tiny grey square which doesn't look very nice.

I was thinking, perhaps it will be good for us to have the option to configure the image we want to use for our folders/directories.
Completed
Last Updated: 22 Nov 2019 08:46 by ADMIN
Re-size/positioning of the table is very important which gives option for user to create table