Unplanned
Last Updated: 01 Nov 2023 14:36 by Stanley
Created by: Stanley
Comments: 0
Category: Editor
Type: Feature Request
2

The Kendo React suite has a Search and Replace functionality. We need to use that in ASP.NET Core.

Please also implement it in Telerik UI for ASP.NET Core.

Unplanned
Last Updated: 26 Oct 2023 05:32 by Joshua
Created by: Joshua
Comments: 0
Category: Editor
Type: Feature Request
1
Expose the ability to configure a Full HTML Page Edit Mode identical to that of the RadEditor for the Telerik UI for ASP.NET AJAX library - https://demos.telerik.com/aspnet-ajax/editor/examples/completehtmlsupport/defaultcs.aspx
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>

Unplanned
Last Updated: 10 May 2023 07:35 by Heidi
Created by: Heidi
Comments: 0
Category: Editor
Type: Feature Request
1
Expose the ability to sort the files in the ImageBrowser by creation date.
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.
Unplanned
Last Updated: 26 Jan 2023 11:53 by ADMIN
Created by: Nitin
Comments: 0
Category: Editor
Type: Feature Request
1

Hi,

We are looking for a feature like outlook when we start typing with "@" it should display the users list using some API Call or any other method. 

Similarly when I start any word with "#" in editor, it should display some suggestions.

Unplanned
Last Updated: 14 Sep 2022 15:30 by ADMIN
Created by: Manasavalli
Comments: 0
Category: Editor
Type: Feature Request
3
Currently all lists in editor are inserted with a default indent and this indent cannot be removed using the outdent button. Request to extend the outdent button functionality to be able to remove default indent on lists similar to list + outdent behavior in MS word or Telerik UI for WPF RichTextBox.
Completed
Last Updated: 27 Jan 2022 08:11 by ADMIN
Created by: NovaStor
Comments: 2
Category: Editor
Type: Feature Request
2

Hi.

 

In Kendo UI for ASP.NET MVC, I'm able to import the following file types into the Editor:

Docx

Rtf

Html

Plain Text

 

I'm also able to export to the following file types:

Docx

Rtf

Pdf

Html

Plain Text

 

I expected this functionality to also exist in the Editor control in Kendo UI for ASP.NET Core.

This functionality seems to be missing from Kendo UI for ASP.NET Core.

 

Related post: https://www.telerik.com/forums/export-to-rtf-or-docx

 

Thank you.

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!

Unplanned
Last Updated: 15 Mar 2021 10:42 by ADMIN

Hello Team,

I wish to show the Kendo ContextMenu if you select immutable elements only, and default contextmenu if you select editable + immutable content.

Please refer below ticket for more details

https://www.telerik.com/account/support-tickets/view-ticket/1508750

Could you please provide this feature as this is our business requirement.

 

Thanks

Mukul

 

Unplanned
Last Updated: 06 Oct 2020 11:08 by ADMIN

We are trying to convert the example below but in ASP.NET Core 3.1 project. 

- https://github.com/telerik/ui-for-aspnet-mvc-examples/blob/master/editor/database-image-browser/DatabaseImageBrowser/Controllers/ImageBrowserController.cs

Currently, some of the classes and functions related to image resizing and creating thumbnails do not exist for UI for ASP.NET Core. We would like to ask for the above-mentioned classes to be supported in UI for ASP.NET Core.

Unplanned
Last Updated: 29 Jun 2020 15:19 by ADMIN

Currently, EditorImageBrowserController of the Editor requires IHostingEnvironment which is outdated in Asp Core 3.1.  The IHostingEnvironment is replaced by IHostEnviornment

- https://docs.microsoft.com/en-us/dotnet/core/compatibility/aspnetcore#hosting-ihostingenvironment-and-iapplicationlifetime-types-marked-obsolete-and-replaced

Unplanned
Last Updated: 19 Feb 2020 08:10 by ADMIN

Hello,

 

At the moment I'm using the ImageBrowser in the Kendo editor.

A user contacted me and reported she would like to browse through the images in the ImageBrowser in a list view instead of tile view (thumbnails with text).

However, I couldn't find a suitable way to achieve this.

Does the current imagebrowser/editor have this functionality and if so, could you help me achieve this please?

 

Kind regards,

Joran

Unplanned
Last Updated: 21 Jan 2020 13:42 by ADMIN
can we have the same functionalities as the AJAX html editor? 
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?
Unplanned
Last Updated: 08 Oct 2019 10:40 by ADMIN
Created by: Ludwig
Comments: 1
Category: Editor
Type: Feature Request
1
Add support for multilevel lists in the Editor. Currently, multilevel lists pasted from Word into the Editor are not functional. Adding child items does not work, because the Editor renders nested lists as <p> elements, instead of <ol> and <li> elements.