the styling of links is handled inconsistently:
The issue seems to be that in the first case a span is inserted inside the a-tag, while in the second case a span is created around the a-tag and the styling for the a-tag is then used.
This can be reproduced in the All Tools demo as shown in the following video.
NOTE: if only the link is selected, or the selection starts or ends with the link, then the link color is changed. The issue is reproducible only when there is selected text before and after the link.
The color should be applied to the link text too.
When the Inline Editor is created from a collapsed pane in the Splitter, the toolbar of the Editor is broken.
Regression introduced with 2025.1.211
The inline Editor's toolbar is broken
The Editor's toolbar should be rendered correctly
Bug report
Custom ContextMenu tool in Editor does not trigger close in built-in ColorPicker tools (probably others as well) after 2025.1.211
Reproduction of the problem
1. Open the Dojo - https://dojo.telerik.com/vkqfrNLN
2. Click on Background color ColorPicker
3. Click on custom ContextMenu
Both popups overlap
Expected/desired behavior
Wokraround
Manually close popups of pickers
// Get the editor instance
var editor = $("#editor").data("kendoEditor");
// Close other dropdowns when clicking your custom tool
$("#" + controlID).on("click", function () {
var foreColor = editor.toolbar.element.find("input[data-command='foreColor']").data("kendoColorPicker");
var backColor = editor.toolbar.element.find("input[data-command='backColor']").data("kendoColorPicker");
foreColor.close();
backColor.close();
});
Environment
Kendo UI version: 2025.1.211 or newer
Browser: [all]
Currently, when Chrome Translate is activated and the user presses 'Enter' key in the Editor, the text is translated.
Also, when Translate is enabled and the user types fast, some characters disappear, as Chrome rewrites the inner text of elements. I know that this can be controlled by adding a translate attribute.
However, I would like to have the option to control this by the built-in Editor configuration options (for example, translate: false).
Currently, Editor's Formatting tool is that it works with block elements. But there are many scenarios where inline formatting is required and is very common. Hence, requesting to enhance the formatting option that works for both block and inline elements is a must-have for the Kendo UI Editor.
For more details on issue: #1362675 ticket was raised
after downloading
@progress/kendo-ui version 2019.1.115 the default create table feature is not working. It is not working on multiple browsers even here: https://demos.telerik.com/kendo-ui/editor/all-tools
the table wizard works but not the cell selection way. Is there a fix for this soon?
Please check dojo https://dojo.telerik.com/UMiREWiL
There is one kendo editor on the main page which is editable and when you click on the link below "Edit the content in pop-up", pop-up opens but doesn't show the content and also text editor is not editable.
Thank you,
Gopi
Our team is fixing all WCAG guideline bugs in our product. The 3.1.1 guideline can't be met because the Kendo editor doesn't allow for setting a lang attribute on the iframe document, nor does the editor infer the language from the parent document and add that lang attribute.
Repro:
Open the editor example page (https://demos.telerik.com/kendo-ui/editor/index). Note that the editor iframe document contains <html> at the top but does not contain a lang="en" attribute within it. Further, edit the example on the page and add lang="en" to the <html> attribute at the top of the example. Run the example. The iframe still does not contain the lang="en" attribute.
Solution:
Include the lang attribute on the child document when the parent document contains one or make a setting available in the configuration JSON for the editor to include a lang attribute in the child document when an iframe is used.
Documents:
When a bullet list with a nested table is created in Word, and then copied into the Editor, a "Cannot read property 'cells' of undefined" error is being thrown. The issue can be reproduced only when the msConvertLists option is set.
Open https://demos.telerik.com/kendo-ui/editor/paste-cleanup
Paste content from editor-test.docx.
Reproducible in the demos.
A new dialog opens, but the overflow dropdown does not close and remains visible below the newly opened dialog.
In the inline Editor the overflow dropdown is shown above the newly opened dialog.
The overflow dropdown closes.
Please have a look at the following example:
https://dojo.telerik.com/eRajAbIX/
Steps to reproduce:
1. Select a single word in the editor, e.g. ipsum.
2. Click the Clean formatting button.
3. The background color of the selected word was not changed.
Currently, the cleanFormatting tool works for removing the format from the entire element and does not split the content if a word is selected. This could be enhanced so that the selected part of the element is split into a new nested element whit no formatting.
Once the content area is blurred it can be focused only by clicking its upper part.
Regression introduced in R2 2019 SP1. Reproducible only in Chrome.
Demos. Screencast.
Content is not focused.
Content is focused.
The fontSize tool gets focus after text selection.
* Open and run https://dojo.telerik.com/oRuLayir demo.
* Select /highlight Line4, choose 16 in the fontSize dropdown.
* Put the cursor at the end of Line6, select Line4, Line5 and Line6 using the mouse. Note that the keyboard focus has shifted to the fontSize dropdown.
When setting a special font of a given paragraph in the Editor component, if the "x" of the Font dropdown is pressed it will reset the font of this text to the default one. If we then want to change the format of a given paragraph(make it bold for example), we select the paragraph and click on the "Bold" button. The text which is being bolded is the one which font was previously reset, not the selected text which we expect to become bold.
The reported behavior is applicable to all styles - bold, italic, underline, text alignment, ul, ol.
When changing the style of a given selected text, after there was a font reset in the Editor, the new formatting we set is being applied on the text which font was reset, not on the selected one.
No matter the operations performed in the Editor when formatting a selected text, the format changes should be applied to the selected text only.
Issue is only present in Firefox, Chrome does not allow selecting multiple cells.
The editor used for this was from the Demo Page:
Dropping an image into the Editor's content results in the image being opened in the browser instead of being added to the widget's content. Reproducible in Chrome, IE and Edge. If there is existing content and the image is dropped in it, the image is added to the content as expected.
Regression introduced in 2019.2.619.
Related to #4994
The image is opened in the browser.
The image is added to the Editor's content.
It will be a nice feature if it is possible to delete the tables inserted in the Editor by selecting them and then pressing the Delete/Backspace button.
Currently, this behavior is working in Internet Explorer as it can be observed in this video.
Hi,
We are facing an issue as follows.
1. We type some ordered or unordered list and we move cursor one left or right.
2. We do select all and backspace to delete entire list.
Issue: First index or bullet never gets deleted does not matter how many times backspace is clicked. On inspecting dom we can see list structure is retained and does not get deleted.
Please find attached video.
Thanks