Completed
Last Updated: 30 Mar 2023 15:53 by ADMIN
Release R1 2023 SP1

The XHTML validator in the editor control is not working.

As per attached screenshot, when you click it and opens the window it simply states the following.

"Sorry! This document cannot be checked."

"Sorry, this type of URL scheme (undefined) is not supported by this service. Please check that you entered the URL correctly"

Can someone tell me why this is happening? It's also broken on the editor demos on your site. Maybe something on the W3C validator has changed making it no longer compatible/viable?

https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

https://demos.telerik.com/aspnet-ajax/editor/examples/built-in-dialogs/defaultcs.aspx 

Completed
Last Updated: 30 Mar 2023 15:50 by ADMIN
Release R2 2023
Whether the editor has content, or has no content, the XHTML validator always gives the same errors as per the attached screenshot.

https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx 
https://demos.telerik.com/aspnet-ajax/editor/examples/built-in-dialogs/defaultcs.aspx   
Completed
Last Updated: 24 Mar 2023 15:20 by ADMIN
Release R1 2023 SP1

The editor does not work at all in Chrome for iOS.

You can reproduce it in this demo:

https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

 

 

 

Completed
Last Updated: 28 Feb 2023 13:51 by ADMIN

Using the latest 2022.3.1109.45, our web application is catching "Invalid Resource Request" exceptions when the Windows7 or Vista (maybe others too) loads the "Editor" control in "Classic" mode.    By decoding the URL, the control is having problems locating the image below

WebResource.axd?d=ZHkUja8e5EF7zNoz8IiY_kAGH7MBQgCnq0BEYT2AtFLv57GDfGbEymwRG8H68WuiE_6l2fpZpqb_FzVc_OItknX-LMTzvQOwC0Mk8HaCtGvNzWl-5nNlZ6xpbOjNSk4A0QtPGtyV0UA-BWX4bOfPU8EI30eAVg8UO6p7yERiuEbCUoiZOGUevYGPdrNVvPel0&t=638034624000000000
Error Message: This is an invalid webresource request.

Telerik.Web.UI.Skins|Telerik.Web.UI.Skins.Vista.Editor.ToolbarVerticalSprites.gif

Telerik.Web.UI.Skins|Telerik.Web.UI.Skins.Windows7.Editor.ToolbarSprites.gif

Change the skin of the radeditor in the default.aspx to another skin such as "metro" and the problem will not happen.    It works OK at least on Black, Metro and Silk but haven't tested others, you can tell it doesn't work when the divider bars in the editor toolbar don't appear properly.

Planned
Last Updated: 21 Nov 2022 14:46 by ADMIN
In earlier versions of the editor, the css class was applied to the image tag itself, which is the correct way to do it. Otherwise the applied css class has no effect on the image.
Completed
Last Updated: 05 Sep 2022 10:43 by ADMIN
Release R3 2022
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
Clear content;
Add a table;
Open context menu by selecting a cell in the table;
Open Cell Properties;
Open More cell Styling;
Chose Background color;
Change it and click OK
Click OK in Table Wizard.
Actual: No background color is applied. 
Completed
Last Updated: 29 Jun 2022 12:28 by ADMIN
Release R3 2022

Please follow these steps to reproduce the issue: 1. Open RadEditor Demo: https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx 2. Choose a word that is present in the text (e.g. "Barcelona"). 3. Open "Find And Replace" dialog. 4. Click on the "Replace" tab. 5. Write "Barcelona" or any other chosen word in the "Find" field. 6. Write something in the "Replace With" field (e.g. "Replacement"). 7. Select the "Up" Direction in "Search Options". 8. Click "Replace All". Actual Result: The "The search string was not found." message is displayed and the substrings ("Barcelona") are not replaced. Expected Result: All occurrences of the substring are replaced. Note that this functionality seems to be working if the "Down" direction is chosen.

Update: I would like to add that the issue is not only with Replace All. The same bug is happening with "Replace" with both "Up" and Down" directions.

Completed
Last Updated: 29 Jun 2022 09:45 by ADMIN

The execution of the getContextMenuByTagName inside the oncontextmenu event of RadEditor hides the context menu once it is shown. This happens in Lightweight render mode only and when the UseRadContextMenu is enabled:

<telerik:RadEditor ID="RadEditor1" runat="server" ContentAreaMode="iframe" OnClientLoad="OnClientLoad">
    <Content>
        <table>
            <tr>
                <td>test</td>
            </tr>
                <tr>
                <td>test</td>
            </tr>
                <tr>
                <td>test</td>
            </tr>
        </table>
    </Content>
</telerik:RadEditor>
<script>
    function OnClientLoad(editor, args) {
        editor.attachEventHandler("oncontextmenu", function (e) {
            var oSelection = editor.getSelectedElement();

            setTimeout(function () {
                var tdMenu = editor.getContextMenuByTagName("TD"); //the call of getContextMenuByTagName closes the context menu when lightweight render mode is used. You can slow down the closing with the setTimeout function or by settign UseRadContextMenu to false.

            }, 1000);
        });

    }
</script>

Completed
Last Updated: 24 Jun 2022 13:56 by ADMIN
Release R3 2022
ADMIN
Created by: Rumen
Comments: 2
Category: Editor
Type: Bug Report
0
"The size of the uploaded file exceeds max size allowed" is thrown even if the file is under the specified maximum upload file size.

The error is reproducible in the Default demo -> http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx.

Open the Document manager and upload some unsupported file which size does not exceed 200 kb. For example upload a small image file. You'll get the following error:

The size of the uploaded file exceeds max size allowed.
The extension of the uploaded file is not valid. Please, provide a valid file!

while only this line should be shown: The extension of the uploaded file is not valid. Please, provide a valid file!
Completed
Last Updated: 22 Jun 2022 12:34 by ADMIN
Pressing ENTER over a list item not only creates a new li, but also inserts additional <br> element.

Video: https://www.screencast.com/t/PZcYTKEtY4v

Steps to reproduce:
1. Open in Chrome:
2. Switch to Html mode and insert the following content:
<ol>
    <li>123 456
    <ol>
        <li>abc</li>
    </ol>
    </li>
    <li>789</li>
</ol>

3. Switch to design mode
4. Put the cursor inside the first li (e.g. before 5) and press ENTER

Result: A <br> element is added in the beginning of the new <li> element
Completed
Last Updated: 21 Jun 2022 22:53 by ADMIN
It should rather select the last cell of the table. 
Completed
Last Updated: 21 Jun 2022 22:34 by ADMIN
When using Table Wizard to insert a new table inside a table cell, the selected table is replaced by the one created from Table Wizard. 

Currently, the workaround is to use the plain InsertTable tool in order to nest tables. 
Declined
Last Updated: 21 Jun 2022 22:34 by ADMIN
Declined
Last Updated: 21 Jun 2022 15:13 by ADMIN
Completed
Last Updated: 21 Jun 2022 15:00 by ADMIN
FileBrowser pager slider tooltips: "Increase", "Decrease"

FileBrowser grid column resize: "Drag to resize" 
Declined
Last Updated: 21 Jun 2022 09:56 by ADMIN
Declined
Last Updated: 21 Jun 2022 09:33 by ADMIN
When creating or updating old areas, the target value always shows either Target or the lastly selected one. It does not update its state.
Completed
Last Updated: 20 Jun 2022 14:59 by ADMIN
Tracked content that is deleted should be removed directly, but newly added content should be tracked.
Won't Fix
Last Updated: 20 Jun 2022 14:43 by ADMIN
ContentEditable=true attribute is added to the body element of the Editor's content when resizing a table in RadEditor in Chrome.

http://screencast.com/t/0s3QlydHv
Won't Fix
Last Updated: 08 Jun 2022 08:10 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: Editor
Type: Bug Report
2
When there is a hidden <tfoot> element in the table, the Delete Row command in the editor context menu cannot delete the last row in IE. Works with other rows and other browsers.

WORKAROUND: use visibility: collapse for the footer rows instead of dispay:none for the footer

Repro steps:
- Use the markup attached below
- right click the last row in any table
- choose Row > Delete Row 

Expected: row is always deleted

Actual: in IE you cannot delete the last row of the second table