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?
Currently, EditorImageBrowserController of the Editor requires IHostingEnvironment which is outdated in Asp Core 3.1. The IHostingEnvironment is replaced by IHostEnviornment.
We are trying to convert the example below but in ASP.NET Core 3.1 project.
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.
An error for the missing image is thrown:
GET https://localhost:63252/test.png 404 (Not Found)
No error is thrown, since the value of the background-image property has been replaced with "none" in the Editor events and the actual content the Editor visualizes does not use the image:
<tr style="box-sizing: border-box; border-style: solid; border-width: 1px 0px; background-image: none;">
...
</tr>
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
If a ListItem element contains a margin-left style, the user can not delete the bulleted item.
Here is a screencast of Case 1 in action.
The bulleted item should be deleted when the user presses backspace.
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.
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
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!
Describe the bug
In version 2022.1.119 when the Editor is placed in the same container with another element that also has width:100% the Editor is visibly wider.
To reproduce
Expected behavior
The Editor's width should not be overridden
Affected package (please remove the unneeded items)
Affected suites (please remove the unneeded items)
Affected browsers (please remove the unneeded items)
Build system information (please remove the unneeded items)
Additional context
Issue not reproducible with Less Themes
When the pasteHtml command or the paste method is used on a line that only has or a tag these are deleted.
Alternatively, turn on Bold formatting without typing anything and click the Add Module button. The Bold formatting gets cleared
Pasting content in the Editor
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.
Hello,
the "clean formatting" button in the Editor deletes Text.
1. Create unorderd List with 3 entries and 3 indents like:
2. select all the indent Points 1.1 to 1.3 and click the "clean formating"
clean formatting is cleaning (deleting) the Points 1-3 :
After clean formating looks like this:
Point 1.1
Point 1.2
Point 1.3
It is reproducable on your Demosite
Regards
Michael Pospischil
### Bug report
When pasting a table that contains merged cells from Word to the Editor is not formatted correctly.
### Reproduction of the problem
1) Create an Editor as per the example below:
$("#editor").kendoEditor({
pasteCleanup: {
msAllFormatting: false,
msConvertLists: false,
msTags: false
}
});
2) Copy the table from the attached ".docx" file and paste it into the Editor.
3) The pasted table does not match the table from the Word file.
### Expected/desired behavior
When copying and pasting tables from Word into the Editor, their formatting should match.
### Environment
* **Kendo UI version: 2023.2.718
* **jQuery version: 3.4.1
* **Browser: [all]
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>