Unplanned
Last Updated: 28 Feb 2020 08:03 by ADMIN
Created by: rudy
Comments: 3
Category: Editor
Type: Feature Request
2
Allow us to activate the inline editor by double-click or by an event.  This way users can click inside the HTML, select it, copy,etc and if they actually want to edit they can double-click or click a button.
Unplanned
Last Updated: 28 Feb 2020 08:03 by ADMIN
Created by: Ricardo
Comments: 0
Category: Editor
Type: Feature Request
1
Sometimes it might be useful to move some tools to a new line inside the toolbox. This creates the possibility of having a better static arrangement of the tools.
Declined
Last Updated: 28 Feb 2020 07:58 by ADMIN
Created by: Steve
Comments: 1
Category: Editor
Type: Feature Request
3
We'd like to give users the ability to insert hyperlinks in the editor. 

We have the restriction that instead of the default Kendo insert link dialog, we need to show a custom dialog. We effectively limit what the user is allowed to link to (a set of internal documents).

There's no easy way to achieve this functionality with the current API. We had to extend the create link tool ourselves to support this.

Thanks.
Unplanned
Last Updated: 28 Feb 2020 07:53 by ADMIN
My client is working with a huge library of images and they requested a feature where they can arrange by the latest image upload.
Currently the Insert Image window allows me to arrange by name and size only.
Declined
Last Updated: 28 Feb 2020 07:49 by ADMIN
If you provide any editor control which render both OpnXml data as well as Html data, that will more helpfull for us.
OR
any convert method in kendo UI editor which convert OpenXml to Html and vise versa.
Declined
Last Updated: 28 Feb 2020 07:24 by ADMIN
It would be helpful to have backend server support for node.js (express) for the  image manager API.   Perhaps it could be started in Kendo Labs as a joint community effort.  
Also,  the API needs to be tuned to support the everlive URI hooks.  While not go ahead and create and image content type with the API on the everlive side that talks to the editor image API.
Unplanned
Last Updated: 28 Feb 2020 07:19 by ADMIN
When using the image browser widget inside the Editor widget, there is a possibility to add extra headers to support the antiforgerytoken.
But inside the image browser, the upload widget is used, and there is no configuration possibility to add a header.
A way around is to intercept the upload call via javascript and to bind to the XMLHttpRequest object. With this we can add a header. But this doesn't work for example in IE9, because no XMLHttpRequest support.

        <textarea kendo-editor="editorWidget" k-ng-model="data.processModelHtml"
                  k-resizable="true"
                  k-tools="['bold','italic','underline','strikethrough','justifyLeft','justifyCenter','justifyRight','justifyFull','insertUnorderedList','insertOrderedList','indent','outdent','createLink','unlink','insertImage','subscript','superscript','createTable','addRowAbove','addRowBelow','addColumnLeft','addColumnRight','deleteRow','deleteColumn','viewHtml','formatting','cleanFormatting','fontName','fontSize','foreColor','backColor','print']"
                  k-image-browser="{ messages: { dropfileshere: 'Drop files here' }, transport: { read: { url:'api/imageapi/getimages', dataType: 'json', headers: { 'RequestVerificationToken': '@Html.RequestVerificationToken()' } }, destroy: { url: 'api/imageapi/deleteimage' , type: 'DELETE', dataType: 'json', headers: { 'RequestVerificationToken' : '@Html.RequestVerificationToken()' } }, create: { url: 'api/imageapi/addimagefolder', type: 'POST', dataType: 'json', headers: { 'RequestVerificationToken' : '@Html.RequestVerificationToken()' } }, thumbnailUrl: 'api/imageapi/getthumbnailimage', uploadUrl: 'api/imageapi/addimage', imageUrl: 'api/imageapi/getimage?path={0}' } }"></textarea>

==> not only uploadUrl parameter, but the same configuration mechanisme like for the transport read, delete, ...

Regards,
Declined
Last Updated: 28 Feb 2020 07:18 by ADMIN
Created by: Imported User
Comments: 1
Category: Editor
Type: Feature Request
1
Declined
Last Updated: 28 Feb 2020 07:14 by ADMIN
it would be very nice if it can keep the original format including the color, size, indent, bullet and even image.
Unplanned
Last Updated: 28 Feb 2020 07:07 by ADMIN
Created by: Katherine
Comments: 1
Category: Editor
Type: Feature Request
1
IT would be nice for the Kendo Editor "Snippet" feature to read its list for a datasource. and also provide events to system when the Snippet selection is changed. 
Declined
Last Updated: 25 Feb 2020 14:07 by ADMIN
Created by: Imported User
Comments: 1
Category: Editor
Type: Feature Request
1
Add an option to set the RTE to be read only.  This is helpful when integrating the capability with databases that have records that may be in a "locked" state.
Unplanned
Last Updated: 20 Feb 2020 07:16 by ADMIN
Created by: Chinmaya
Comments: 1
Category: Editor
Type: Bug Report
0

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

Unplanned
Last Updated: 18 Feb 2020 08:19 by ADMIN
Created by: Steve
Comments: 1
Category: Editor
Type: Feature Request
4

Hi,

In trying to use the Table Wizard in the Editor, I can see an 'Alignment' option which allows me to set the text alignment (<table style="text-align:center;">) - but I don't see an option for the physical placement of the <table> itself within the HTML.

While I know the 'align' property for the <table> object has been deprecated, we can obviously use <table style="float:right"> - but this requires a user to manually edit the HTML the Table Wizard generates after it has been created, which kind of defeats the object of having a wizard.

We are actively trying to minimise the amount of HTML knowledge people need to use these tools, and the Wizard UI is a definite positive step here - can there not be an option added to it to allow this positioning to be selected in the wizard too?

Thanks,

Steve

Unplanned
Last Updated: 03 Feb 2020 11:42 by ADMIN

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.

Completed
Last Updated: 28 Jan 2020 08:25 by ADMIN
Release 2020.R1.SP.next

Bug report

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

Reproduction of the problem

Screencast.
Dojo example.

  1. Drag an image into the Editor's content.

Current behavior

The image is opened in the browser.

Expected/desired behavior

The image is added to the Editor's content.

Environment

  • Kendo UI version: 2019.3.1023
  • jQuery version: x.y
  • Browser: [Chrome 78, IE, Edge ]
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.
Unplanned
Last Updated: 21 Jan 2020 13:13 by ADMIN
Currently you cannot rename a folder. If you can create and delete you should also be able to rename.
Unplanned
Last Updated: 21 Jan 2020 13:12 by ADMIN
Created by: Imported User
Comments: 1
Category: Editor
Type: Feature Request
11
Please add support NewLineMode property like in RadEditor.

I need this behavior:
The last available option of the NewLineMode property is Div which will insert a div (<div> tag) on every carriage return (pressing Enter). In order to insert a <br /> tag in this mode press Shift+Enter .

More info:
http://docs.telerik.com/devtools/aspnet-ajax/controls/editor/managing-content/control-new-line-behavior
Unplanned
Last Updated: 21 Jan 2020 13:08 by ADMIN
Created by: Imported User
Comments: 0
Category: Editor
Type: Feature Request
7
The Editor is currently very reliant on inline styles. Inline styles can be used for XSS attacks, and per the OWASP guidelines they should be sanitized: https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet#RULE_.234_-_CSS_Escape_And_Strictly_Validate_Before_Inserting_Untrusted_Data_into_HTML_Style_Property_Values

This is not easy to do "after the fact", as it needs to be two way.

Suggest that the editor can be customized similar to TinyMCE (https://www.tinymce.com/docs/configure/content-formatting/#exampleofusageoftheformatsoption) to allow classes rather than inline styles.
Unplanned
Last Updated: 21 Jan 2020 13:05 by ADMIN
In the editor, offer tools to collaborate on shaping text/content. This would include Word-like functionality to add notes/comments and use track changes with the ability to accept/reject notes, comments, and redlines.