When trying to navigate the toolbar of the editor with a keyboard, the focus is stuck/not working for color pickers.
When using Tab(or RightArrow) from the left the focus is stuck on the first colorpicker.
When using Shift+Tab(or LeftArrow) from the right the focus is stuck on the last tool before the colorpicker.
See DOJO: https://dojo.telerik.com/aKOKOwiP
Issue is only present in Firefox, Chrome does not allow selecting multiple cells.
The editor used for this was from the Demo Page:
I want to use the ImageBrowser with services that perform the requested operations.. I've got my transport.read, transport.create, transport.destroy services created just fine and everything works. However, the imageUrl and thumbnailUrl properties leave me baffled. So transport.thumbnailUrl hard-codes a ?path={url} to whatever url you give it ... this seems like a major hack. I want to use a REST service with the generation of the thumbnail and I need to supply additional query string parameters, but the current implementation precludes doing so. At least imageUrl lets me pass in a function or a parameterized string, but imageUrl ALWAYS tacks on the current relative path. The images that I'm using get stored in a DB by the service, so doing so makes no sense. Both these properties should have the same abilities as the create,read, and destroy -- let me control what is passed in explicitly.
The modality of the Editor's popups affects performance when multiple Editors are initialized or destroyed. Example: https://dojo.telerik.com/OZiHAzAn/4
Note that modality is turned on before initializing the Editors and turned off afterwards. This leads to a performance boost, more noticeable on destroying the Editors. Performance is worse, if modality is not set. For additional details see (Ticket ID: 1469512).
Research whether performance improvements are possible to implement in the Editor's source code, which will avoid having to switch popup modality as demonstrated in the linked example.
There are a number of controls missing from the new editor that was not in the old telerik editor. including Add spell check, cut, copy and paste {several options}, undo, redo, new paragraph, horizontal rules, insert time, insert symbol. Anyway to bring those functionalities into ASP.net core?
Dojo example.
The border color of all cells is changed. If you re-open the table wizard and follow the same steps only the selected cell border color is set (expected). This behavior is not reproducible with tables added through the createTable tool.
The border color of the selected cell is changed.
Add an enable() method to Editor to enable/disable the editor widget. The following link mentions how to disable the contenteditable, but this does not disable the toolbar: http://www.telerik.com/forums/disable-readonly-and-maxlength-for-kendoeditor Something like: function(enable) { $(this.body).attr("contenteditable", enable); if (enable) { this.toolbar.element.closest(".k-editor-toolbar-wrap").find(".k-disabled-overlay").remove(); } else { this.toolbar.element.closest(".k-editor-toolbar-wrap").append("<div class='k-disabled-overlay'></div>"); } }
Can the 'Insert Hyperlink' popup within the mini and full Editors be expanded to allow users to create different types of links e.g. email, web, anchor.
The 'Hyperlink Manager' in the ASP.NET AJAX tools is the blueprint for what we are looking for here - something that a non-technical user can use to create different types of hyperlinks easily and intuitively within the Editor.
The fact that you can select items from the Document Manager, use CSS classes to style the links, etc. is a real plus here too.
With current editor, after you copy table which has merged cells to editor, merged cells are gone, Cells are shifted forward.
In the image browser of the editor, when uploading an image there isn't any loading component which is disturbing for the user since sometimes it can takes several seconds but the user don't knows that upload in really in progress
Kendo UI editor converts every URL pasted or written into an Html link, it might be nice to be able to configure that behavior. By default it can be left as it is, converting the urls into links, but it will be nice to expose an option to disable that behavior.
Would be nice for the Editor content to be centered so it appears professional in Corporate announcements
In the editor, the image manager search should search the current folder and any folders underneath it and return all matching images. Currently it only searches the current directory.
Add a configuration option to the editor to allow the TAB key to indent the first line of a paragraph (add whitespace) rather than tabbing between elements.
In microsoft word it is possible to indent with tab and outdent with shift-tab in lists. Could you implement such keyboard navigation. Thanks
If the DEL key is pressed at the end of Row 1.1.1 - Row 1 - Row 1.1 - Row 1.1.1 - Row 2 - Row 3 then it looks like this (with two slashes -) - Row 1 - Row 1.1 - Row 1.1.1Row 2 - - Row 3 This is the answer from Telerik: I am afraid the result of the delete key press comes entirely from the browser. You can check out this example here: http://dojo.telerik.com/ejEfu. If you repeat the same steps, you will get the same results. This is how the browser interprets the deletion with del key in this scenario. The Kendo Efitor does not somehow interrupt the browser deletion functionality and currently has no control over the content that is deleted and replaced. You could possible suggest a feature request on the topic in the Kendo Feedback channel so that others can vote for your suggestion. The solution of that case would be the deletion commands to be controlled via custom editor commands (something that is not present currently).
when user inputs the editor should grow downwards as of inline-editor.
RE: Support ID:1010795 -- KendoUI Editor Stripping Why does your editor control: a. Strip whitespace? b. Provide no way to change this behaviour with an option? I think it is clear that this was a design/coding error on your part, so can you please rectify this please? G.
Currently when inside a table, the functionality for adding more tables disappears and is replaced by the table edit tools, however in our software tables are used to layout the HTML rendered by the editor, which prevents users adding tables at all. We need to keep ours set up this way and cannot switch to a CSS way of building the HTML :(