Completed
Last Updated: 02 Jul 2020 12:42 by ADMIN
Release R3 2020
rumen jekov
Created on: 02 Jul 2020 12:35
Category: UI for ASP.NET AJAX
Type: Bug Report
1
The start attribute gets stripped and the bullet numbers are reset when copied from MS word

Editor is not maintaining the Format of text, specifically the bullet numbers, when copied from MS word. 

You can use the attached content to reproduce the problem in the Overview demo of the control.

Attached Files:
1 comment
ADMIN
Rumen
Posted on: 02 Jul 2020 12:40

The problem will be fixed in R3 2020.

For the old versions you can fix it with this override:

        <script>
            Telerik.Web.UI.Editor.Utils.clearLists = function(domObject, stylesToKeep) {
                var $ = $telerik.$;
                var orderedLists = $(domObject).find('OL');
                $(orderedLists).removeAttr('type');
               // $(orderedLists).removeAttr('start');
            }
        </script>
        <telerik:RadEditor RenderMode="Lightweight" ID="RadEditor1" runat="server" Height="800">
        </telerik:RadEditor>

Regards,
Rumen
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.