Unplanned
Last Updated: 07 Jun 2021 20:49 by ADMIN
Created by: Sridhar
Comments: 0
Category: Editor
Type: Feature Request
1

Hi Team,

I would like to request to have it built-in to include the font specifications, such as the name, size, etc, within the inherited font messages of the Kendo UI Editor. 

Thank you!

Completed
Last Updated: 26 Jan 2024 12:47 by ADMIN

Bug report

We are trying to prevent users from dropping an image file from their computer directly onto the Editor with Firefox. When this happens the browser converts the image into a uri encoded version of the image. When we define a custom PasteCleanup function to handle this, the Editor will sometimes work as expected but other times it will throw an error when trying to execute the function. This seems to be random after each page load.

Reproduction of the problem

  1. Open this Dojo with Firefox
  2. Run the Dojo and drag and drop an image from your machine

Please note that the reproduction of the error is inconsistent. However the CustomPasteCleanUp doesn't prevent the addition of the image, nor does the prevention of the Drop event.

Screen capture of reproduction in ASP .NET Core.
Screen capture of reproduction in Dojo.
More information about issue and reproduction available in ticket: 1534730

Current behavior

An image file that is dragged and drop by the user to the Editor is always added to the widget.

Expected/desired behavior

The current behavior should be preventable and an error must not occur.

Environment

  • Kendo UI version: 2021.2.616
  • Browser: [ Chrome 93 | Firefox 92 ]
Unplanned
Last Updated: 31 Jan 2022 19:37 by ADMIN
Created by: Egbert
Comments: 1
Category: Editor
Type: Bug Report
1

Describe the bug

In version 2022.1.119 when the Editor is placed in the same container with another element that also has width:100% the Editor is visibly wider.

To reproduce

  1. Run this Dojo or this REPL
  2. Inspect the Editor's wrapper

Expected behavior
The Editor's width should not be overridden

Screenshots
image

Affected package (please remove the unneeded items)

  • theme-default
  • theme-bootstrap

Affected suites (please remove the unneeded items)

  • Kendo UI for jQuery

Affected browsers (please remove the unneeded items)

  • All

Build system information (please remove the unneeded items)

  • Not Applicable

Additional context
Issue not reproducible with Less Themes

Unplanned
Last Updated: 01 Mar 2023 12:59 by Vikas
Extend the .Messages(msg=>msg.Units()) so different aria-labels can be set for the Table Wizard's Height Units DropDownList and Width Units DropDownList. Currently the same message is set to both Units DropDownLists.
Completed
Last Updated: 13 Jun 2022 12:02 by ADMIN

Bug report

When the user creates a folder and tries to add a file to the Editor an error occurs that the file is not found. This behavior is observed only if the application is Core 3.1.

Reproduction of the problem

  1. Open Image and File Browser Demo
  2. In the ImageBrowser create a folder.
  3. Upload an image and try to add it to the Editor

Current behavior

Currently, in the console, an error 404 occurs that the resource is not found.

Expected/desired behavior

The image should be added to the Editor without errors.

Environment

  • Kendo UI version: 2010.2.617
  • Browser: [all ]
Completed
Last Updated: 28 Oct 2020 14:51 by ADMIN
Release 2020.R3.SP.next

Bug report

Reproduction of the problem

Reproducible in the demos.

  1. Click inside a cell in the table
  2. Click the "Delete row" button in the toolbar.
  3. Use a keyboard shortcut to "Undo" the delete action.
  4. Resize the table.
  5. Observe two sets of resize handles.

Current behavior

Resize handles duplication

Expected/desired behavior

No duplication of the resize handles

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [Chrome]
Completed
Last Updated: 24 Nov 2023 08:24 by ADMIN

Bug report

When the Editor is configured by using tagHelpers and the configuration of the tools is on multiple lines additional new lines are added to the Editor content due to the tags used for the tool's configuration.

Reproduction of the problem

  1. In UI for ASP.NET Core app use the following Editor configuration:
<button onclick="getValue()">get Value</button>
Test-1:<br /><br /><br /><br />
<kendo-editor name="test1" tag="div" >         
    <tools>
        <tool name="viewHtml" />
    </tools>
</kendo-editor>  
<script>
    function getValue() {
          var editor1 = $("#test1").data("kendoEditor");
          console.log(editor1.value())                   
    };
</script>
  1. Enter for example "1"
  2. Click the 'get Value' button

Current behavior

The value of the editor has additional new lines. The additional lines could be observed also in the 'viewhtml' tool. (screencast)

Expected/desired behavior

There should be no additional new lines added to the Editor's content.

Workaround

Configure the Editor on a single line

<kendo-editor name="test1" tag="div"><tools><tool name="viewHtml" /></tools></kendo-editor>

Environment

  • Kendo UI version: 2021.1.119
  • Browser: [all ]
Unplanned
Last Updated: 26 Sep 2023 07:39 by Luca

Currently out of all buttons the mentioned above can't have custom tooltip messages given to them with the .Messages() method. If a user wants to localize the buttons to a different language, they won't be able to do it without the use of additional JS logic for these 4 specific buttons (see attached screenshot).

As a workaround, the following code is used to achieve this behavior:  

<script>
    $(document).ready(function () {
        changeBtnMessages()
    })   

    function changeBtnMessages() {
        var mergeCellsHorizontallyBtn = document.querySelector('[aria-label="Merge cells horizontally"]'); // Get the first button with this specific aria-label property
        var parent = mergeCellsHorizontallyBtn.parentElement // Get its parent element which is being also a parent to the other 3 buttons
        var children = parent.children // Get all the 4 buttons alltogether

        var customTitles = ["sample title 1", "sample title 2", "sample title 3", "sample title 4"] // Here are the custom messages(title) that will be applied, be sure to change them in your application
        for (var i = 0; i <= children.length; i++) {
            $(children[i]).prop('title', customTitles[i]) // Iterate through them and set the message to each one of them
        }
    }
</script>

Completed
Last Updated: 20 Oct 2023 11:43 by ADMIN
Release R3.2023-Increment.3(11.Oct.2023)

### Bug report

When adding a custom tool with a template in the Editor, the hash-template syntax is treated as a string.

### Reproduction of the problem

A Dojo sample for reproduction: https://dojo.telerik.com/iwikOpul

### Expected/desired behavior

The hash literals should be parsed correctly to display the respective data.

### Environment

* **Kendo UI version: 2023.1.314
* **Browser: [all]

1 2