Completed
Last Updated: 11 Apr 2022 14:27 by ADMIN

The use case that we would like to cover is as follows.

 

1. Open an image in Paint.

2. Select a region and copy it.

3. Paste into the editor.

4. The image should be displayed in the editor. 

 

It should, however, be encoded similar to the way that Kendo Grid for jQuery does to produce something like this.

<img src="data:image/png;base64,iVBORw0KGgoAAA...vwAAAABJRU5ErkJggg==" />

 

Note that the image is not hosted remotely at some URL, but rather is included inline within the body.

Completed
Last Updated: 19 May 2022 08:08 by ADMIN
Created by: Roman
Comments: 2
Category: Editor
Type: Feature Request
8

I see that in Kendo UI for JQuery it is present, but for Angular 2+ there is no such functionality in the example.

There is no way to change size for columns,rows and table for table.

1) Go to https://www.telerik.com/kendo-angular-ui/components/editor/tools/

2) Add table to editor

3) Click on table

4) No way to change size

Completed
Last Updated: 27 May 2021 17:59 by ADMIN
Created by: Flemming
Comments: 2
Category: Editor
Type: Feature Request
6

I would like if you would add support for gradient colorpicker in the Editor toolbar.

Currently, only Palette is supported.

 

Since it is possible with the ColorPicker input control and as the Editor Toolbar derives from that, I hope it is possible.

Would be awesome if possible.

 

Thanks

 

/Flemming

Completed
Last Updated: 04 Jun 2020 13:40 by ADMIN
Created by: Lívia
Comments: 4
Category: Editor
Type: Feature Request
6

Hey Telerik Team,

 

Please consider accepting some HTML tags like <table> and its repectives <tr> <td>... My company uses templates based on that structure.

Please, we're using the latest version of Angular and therefore Kendo UI Jquery integrated with angular (which allows those tags) does not fullfil our requirements anymore. We need it asap.

Thanks.

Completed
Last Updated: 03 Nov 2021 14:25 by ADMIN
Created by: Brandon
Comments: 2
Category: Editor
Type: Feature Request
6
Really would like the Editor component to accept an array of plugins to add to the prose editor. I needed to bring in the mentions plugin so people could @ mention things in the editor. Since I MUST have the custom plugin I couldn't use the kendo-editor component at all and theres so much more in the component that gets thrown away because I can't use the component if I can't give you some prose editor plugins to add.
Completed
Last Updated: 27 May 2021 18:01 by ADMIN
Created by: Daniel
Comments: 2
Category: Editor
Type: Feature Request
5

After looking through the Editor API for Angular 7+, I noticed that there is no input to add a placeholder for the editor. This is something we had in the past (in other editors) and feel its important to still have. I understand the Editor is in Beta, but is there any plans to add an input to the EditorComponent to have a placeholder like so?

<kendo-editor ... [placeholder]="my placeholder"></kendo-editor>

Or is there already a way to do this?

Completed
Last Updated: 22 Oct 2021 07:41 by ADMIN
Created by: Nitika
Comments: 1
Category: Editor
Type: Feature Request
5

I want to get selected text from the Kendo Angular editor and I see no function similar to what we have in Kendo AngularJs Editor like GetRange, GetSelection

 

Completed
Last Updated: 11 May 2022 10:16 by ADMIN
Created by: Avinash
Comments: 1
Category: Editor
Type: Feature Request
5
Able to resize image using mouse select rather than from the image toolbar.
Completed
Last Updated: 12 May 2020 09:37 by ADMIN
Created by: Plamen Ratchev
Comments: 4
Category: Editor
Type: Feature Request
4

Currently all text is wrapped inside a P tag, which is very inconvenient in many cases. Couple of examples:

  • You want to insert a new line inside a paragraph w/o having spacing before it. This is currently not possible. As soon as you hit [Enter] a new paragraph is added. In the jQuery version of the control it was possible to use [Shift] + [Enter] to insert a "simple" new line w/o adding a new paragraph. This doesn't work in the Angular version. 
  • Items in LI is wrapped inside a P tag. This adds unnecessary spaces between the LI and makes it really hard to render this content in a report insde HtmlTextBox as it is rendered with huge spacing between. There should be an ability to omit P inside LI. 
Completed
Last Updated: 15 Feb 2022 10:50 by ADMIN
Created by: Tarang
Comments: 1
Category: Editor
Type: Feature Request
4
Hello, provide a paste event for editor like it is available for other counterparts - editor for asp.net core, jquery.
Completed
Last Updated: 03 Nov 2021 14:23 by ADMIN
Created by: Matt
Comments: 1
Category: Editor
Type: Feature Request
3

Provide an option to drag the bottom right corner of the Editor in order to change the height of the Editor manually as the Kendo jQuery Editor.

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

Completed
Last Updated: 15 Feb 2022 10:52 by ADMIN

I would like to have the possibility to modify the pasted content before it is inserted by providing a callback function. This function would be called with the content after Kendo's internal cleanup and the cleanup I specified through the other options has run.

It would look like this:


@Component({
    selector: 'my-app',
    template: `
        <kendo-editor [pasteCleanupSettings]="pasteCleanupSettings"></kendo-editor>
    `
})
export class AppComponent {
    public pasteCleanupSettings = {
        // other options...
        custom: (input: string) => {
            return '<h1>I can do anything I want in here</h1>' + input;
        }
    }
}

Basically I want the same behavior as the jQuery editor provides through pasteCleanup.custom: https://docs.telerik.com/kendo-ui/api/javascript/ui/editor/configuration/pastecleanup#pastecleanupcustom 

Completed
Last Updated: 15 Feb 2022 10:48 by ADMIN
Created by: Harikrishna
Comments: 1
Category: Editor
Type: Feature Request
2
Provide an option to select a cell, row, or the whole table in Kendo Editor table.