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.
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.
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.
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.
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.
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.
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,
it would be very nice if it can keep the original format including the color, size, indent, bullet and even image.
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.
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.
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
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
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.
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.
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.
Currently you cannot rename a folder. If you can create and delete you should also be able to rename.
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
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.
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.