This is a migrated thread and some comments may be shown as answers.

Server-Side AcceptTrackChanges and RejectTrackChanges does not accept or reject Bold, Italics, etc

12 Answers 120 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Joseph
Top achievements
Rank 1
Joseph asked on 06 May 2016, 02:45 AM

Hi,

My company has a requirement to build a User Control that has 3 tabs Current, Original and Final.

Current tab will display the current content of the RadEditor including all the Track Changes information.

Original tab will display the original content of the RadEditor before changes are made (all the changes are rejected).

Final tab will display the final content of the RadEditor if all the changes are accepted.

 

To achieve this I have tried 2 methods.

First, I tried to use the server-side methods AcceptTrackChanges to get the content for Final and RejectTrackChanges to get the content for Original.

However, this did not work because AcceptTrackChanges and RejectTrackChanges does not accept or reject text formatting changes like Bold, Italics, etc.

 

The second method I tried was to use the client-side workaround suggested by http://feedback.telerik.com/Project/108/Feedback/Details/88678-when-accepttrackchanges-method-is-being-used-from-the-code-behind-inline-forma.

Unfortunately that did not work either.

 

Is there another way to achieve what we want?

12 Answers, 1 is accepted

Sort by
0
Joseph
Top achievements
Rank 1
answered on 06 May 2016, 03:41 AM

I have now tried a 3rd method, using the get_htmlRejectChanges() and get_htmlAcceptChanges(), but both commands return the current html (with all the changes information).

 

function PopulateOriginal() {
 
        console.log('PopulateOriginal');
 
        var currentHtml = $('#' + '<%=divCurrent.ClientID%>').html();
 
        var editor = $find("<%= redEditor.ClientID %>");
        editor.set_html(currentHtml);
 
        //var trackChanges = Telerik.Web.UI.Editor.TrackChanges;
        //trackChanges.initialize(editor);
        //trackChanges.rejectAllChangesSilently();
        ////console.log(trackChanges);
 
        //var originalHtml = editor.get_html(true);
 
        var originalHtml = editor.get_htmlRejectChanges();
 
        $('#' + '<%=divOriginal.ClientID%>').html(originalHtml);
    }
 
    function PopulateFinal() {
 
        console.log('PopulateFinal');
 
        var currentHtml = $('#' + '<%=divCurrent.ClientID%>').html();
 
        var editor = $find("<%= redEditor.ClientID %>");
        editor.set_html(currentHtml);
 
        //var trackChanges = Telerik.Web.UI.Editor.TrackChanges;
        //trackChanges.initialize(editor);
        //trackChanges.acceptAllChangesSilently();
        ////console.log(trackChanges);
 
        //var finalHtml = editor.get_html(true);
 
        var finalHtml = editor.get_htmlAcceptChanges();
 
        $('#' + '<%=divFinal.ClientID%>').html(finalHtml);
    }

0
Joseph
Top achievements
Rank 1
answered on 06 May 2016, 03:45 AM
I have found the issue. I have to set TrackChangesSettings-CanAcceptTrackChanges to "true".
0
Joseph
Top achievements
Rank 1
answered on 06 May 2016, 04:56 AM

I am now facing a related issue. The get_htmlRejectChanges function returns html with one of the changes accepted.

 

The following html content is returning "The quick brown dog jumps over the lazy fox." instead of "The quick brown dog jumps over the lazy fox." when get_htmlRejectChanges is called.

The <span author="Joseph Wee" command="Underline" timestamp="1462500472184" title="Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM" class="reFormat reU0" style="text-decoration: underline;">quick</span> <strong author="Joseph Wee" command="Bold" timestamp="1462500477102" title="Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM" class="reFormat reU0">brown</strong> <del author="Joseph Wee" command="Delete" timestamp="1462499779145" title="Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM" class="reU0">dog</del><ins author="Joseph Wee" command="Insert" timestamp="1462499780480" title="Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM" class="reU0">fox</ins> jumps <sup author="Joseph Wee" command="Superscript" timestamp="1462500484214" title="Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM" class="reFormat reU0">over</sup> the <em author="Joseph Wee" command="Italic" timestamp="1462500496627" title="Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM" class="reFormat reU0">lazy</em> <del author="Joseph Wee" command="Delete" timestamp="1462499787189" title="Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM" class="reU0">fox</del><ins author="Joseph Wee" command="Insert" timestamp="1462499788188" title="Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM" class="reU0">dog</ins>.

 

ItemView.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ItemView.aspx.cs" Inherits="ItemView" %>
 
<%@ Register Src="~/UserControls/HtmlEditor.ascx" TagPrefix="zoo" TagName="HtmlEditor" %>
<%@ Register Src="~/UserControls/TrackChangesTextViewer.ascx" TagPrefix="zoo" TagName="TrackChangesTextViewer" %>
 
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server">
        <StyleSheets>
            <%--<telerik:StyleSheetReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Skins.Editor.css" />
            <telerik:StyleSheetReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Skins.Default.Editor.Default.css" />
            <telerik:StyleSheetReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Skins.Window.css" />
            <telerik:StyleSheetReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Skins.Default.Window.Default.css" />--%>
        </StyleSheets>
    </telerik:RadStyleSheetManager>
 
    <%--<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>--%>
    <script src="js/jquery-1.10.2.js" type="text/javascript"></script>
    <script src="js/jquery-ui-1.11.4.js" type="text/javascript"></script>
    <link href="css/EditorContent.css" rel="stylesheet" />
    <link href="css/StyleSheet.css" rel="stylesheet" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
        </Scripts>
    </telerik:RadScriptManager>
    <script type="text/javascript">
        //Put your JavaScript code here.
    </script>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    </telerik:RadAjaxManager>
    <div>
        <table>
            <tr>
                <td>
                    <div style="width:750px; height:400px">
                        <asp:HyperLink ID="hlinkHome" runat="server" NavigateUrl="~/Default.aspx">Home</asp:HyperLink><br />
                        <asp:Button ID="btnPostback" runat="server" Text="Post back" OnCommand="btnPostback_Command" />
                    </div>
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer1" />
                     
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer2" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer3" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer4" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer5" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer6" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer7" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer8" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer9" />
                </td>
            </tr>
            <tr>
                <td>
                    <zoo:TrackChangesTextViewer runat="server" id="TrackChangesTextViewer10" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>

 

ItemView.aspx.cs

using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Telerik.Web.UI;
 
public partial class ItemView : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            //TrackChangesTextViewer1.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            //TrackChangesTextViewer2.Content = "<p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506896487\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:54:56 PM\" class=\"reFormat reU0\">Hey</strong> d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506816091\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506816211\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">i</ins>ddle d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506819945\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:39 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506820072\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:40 PM\" class=\"reU0\">i</ins>ddle,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506825128\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506825138\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Cat</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506901565\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:01 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">and</span> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506830574\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Violin</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506830584\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Fiddle</ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506836430\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:56 PM\" class=\"reU0\">Horse</del><ins author=\"Joseph Wee\" timestamp=\"1462506919979\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506919979\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reFormat reU0\">Cow</em></ins> jump<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508602003\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:22 PM\" class=\"reU0\">e</ins>d <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506846003\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">under</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506846003\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">over</ins> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506851740\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:11 PM\" class=\"reU0\">Sun</del><ins author=\"Joseph Wee\" timestamp=\"1462506925838\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506925838\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reFormat reU0\">Moon</em></ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506860730\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:20 PM\" class=\"reU0\">big</del><ins author=\"Joseph Wee\" timestamp=\"1462506932675\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506932675\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reFormat reU0\">little</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506865065\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:25 PM\" class=\"reU0\">cat</del><ins author=\"Joseph Wee\" timestamp=\"1462506937099\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506937099\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reFormat reU0\">dog</strong></ins> laugh<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508604880\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:24 PM\" class=\"reU0\">e</ins>d to see such <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506872681\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:32 PM\" class=\"reU0\">Fun</del><ins author=\"Joseph Wee\" timestamp=\"1462506942654\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506942654\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">Craft</span></ins>,</p><p>And the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506878567\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:38 PM\" class=\"reU0\">Plate</del><ins author=\"Joseph Wee\" timestamp=\"1462506951024\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506951024\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reFormat reU0\">Dish</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506882419\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:42 PM\" class=\"reU0\">walked</del><ins author=\"Joseph Wee\" timestamp=\"1462506955471\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506955471\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">ran</span></ins> away with the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506887037\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:47 PM\" class=\"reU0\">Fork</del><ins author=\"Joseph Wee\" timestamp=\"1462506960737\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506960737\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reFormat reU0\">Spoon</em></ins>.</p>";
            //TrackChangesTextViewer3.Content = "<p><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507395115\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:15 PM\" class=\"reFormat reU0\">Ding</em>, <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507398868\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:18 PM\" class=\"reFormat reU0\">dong</em>, bell<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507320171\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:00 PM\" class=\"reU0\">y</del>,</p><p>Pussy’s in the <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507404597\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:24 PM\" class=\"reFormat reU0\">well</strong><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507324609\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:04 PM\" class=\"reU0\">y</del>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507408676\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:28 PM\" class=\"reFormat reU0\">Who</strong> put her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507327897\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">out</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507327897\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">in</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507333117\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507333117\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507417315\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:37 PM\" class=\"reFormat reU0\">Johnny Flynn</em>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507421923\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:41 PM\" class=\"reFormat reU0\">Who</strong> pulled her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507339247\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">in</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507339257\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">out</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507343554\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507343554\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507429803\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:49 PM\" class=\"reFormat reU0\">Tommy Stout</em>.</p><p>What a <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507433110\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:53 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">naughty</span> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507349680\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">girl</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507349680\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">boy</ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507352929\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">is</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507352929\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">was</ins> that,</p><p>To try to <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507360630\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">clown</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507360630\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">drown</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507437759\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:57 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">poor</span> pussy <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507366623\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507366623\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">cat</ins>,</p><p>Who never did <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507371204\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">her</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507371214\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">him</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507445129\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:05 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">any</span> harm,</p><p>But killed all the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507377969\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:57 PM\" class=\"reU0\">lice</del><ins author=\"Joseph Wee\" timestamp=\"1462507452521\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507452521\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reFormat reU0\">mice</strong></ins> in the farmer's <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507383499\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">hut</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507383499\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">barn</ins>.</p>";
 
            //TrackChangesTextViewer4.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            //TrackChangesTextViewer5.Content = "<p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506896487\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:54:56 PM\" class=\"reFormat reU0\">Hey</strong> d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506816091\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506816211\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">i</ins>ddle d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506819945\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:39 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506820072\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:40 PM\" class=\"reU0\">i</ins>ddle,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506825128\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506825138\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Cat</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506901565\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:01 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">and</span> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506830574\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Violin</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506830584\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Fiddle</ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506836430\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:56 PM\" class=\"reU0\">Horse</del><ins author=\"Joseph Wee\" timestamp=\"1462506919979\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506919979\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reFormat reU0\">Cow</em></ins> jump<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508602003\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:22 PM\" class=\"reU0\">e</ins>d <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506846003\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">under</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506846003\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">over</ins> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506851740\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:11 PM\" class=\"reU0\">Sun</del><ins author=\"Joseph Wee\" timestamp=\"1462506925838\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506925838\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reFormat reU0\">Moon</em></ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506860730\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:20 PM\" class=\"reU0\">big</del><ins author=\"Joseph Wee\" timestamp=\"1462506932675\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506932675\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reFormat reU0\">little</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506865065\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:25 PM\" class=\"reU0\">cat</del><ins author=\"Joseph Wee\" timestamp=\"1462506937099\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506937099\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reFormat reU0\">dog</strong></ins> laugh<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508604880\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:24 PM\" class=\"reU0\">e</ins>d to see such <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506872681\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:32 PM\" class=\"reU0\">Fun</del><ins author=\"Joseph Wee\" timestamp=\"1462506942654\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506942654\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">Craft</span></ins>,</p><p>And the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506878567\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:38 PM\" class=\"reU0\">Plate</del><ins author=\"Joseph Wee\" timestamp=\"1462506951024\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506951024\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reFormat reU0\">Dish</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506882419\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:42 PM\" class=\"reU0\">walked</del><ins author=\"Joseph Wee\" timestamp=\"1462506955471\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506955471\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">ran</span></ins> away with the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506887037\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:47 PM\" class=\"reU0\">Fork</del><ins author=\"Joseph Wee\" timestamp=\"1462506960737\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506960737\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reFormat reU0\">Spoon</em></ins>.</p>";
            //TrackChangesTextViewer6.Content = "<p><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507395115\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:15 PM\" class=\"reFormat reU0\">Ding</em>, <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507398868\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:18 PM\" class=\"reFormat reU0\">dong</em>, bell<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507320171\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:00 PM\" class=\"reU0\">y</del>,</p><p>Pussy’s in the <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507404597\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:24 PM\" class=\"reFormat reU0\">well</strong><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507324609\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:04 PM\" class=\"reU0\">y</del>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507408676\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:28 PM\" class=\"reFormat reU0\">Who</strong> put her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507327897\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">out</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507327897\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">in</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507333117\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507333117\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507417315\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:37 PM\" class=\"reFormat reU0\">Johnny Flynn</em>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507421923\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:41 PM\" class=\"reFormat reU0\">Who</strong> pulled her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507339247\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">in</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507339257\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">out</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507343554\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507343554\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507429803\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:49 PM\" class=\"reFormat reU0\">Tommy Stout</em>.</p><p>What a <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507433110\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:53 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">naughty</span> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507349680\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">girl</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507349680\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">boy</ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507352929\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">is</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507352929\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">was</ins> that,</p><p>To try to <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507360630\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">clown</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507360630\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">drown</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507437759\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:57 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">poor</span> pussy <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507366623\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507366623\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">cat</ins>,</p><p>Who never did <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507371204\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">her</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507371214\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">him</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507445129\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:05 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">any</span> harm,</p><p>But killed all the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507377969\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:57 PM\" class=\"reU0\">lice</del><ins author=\"Joseph Wee\" timestamp=\"1462507452521\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507452521\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reFormat reU0\">mice</strong></ins> in the farmer's <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507383499\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">hut</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507383499\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">barn</ins>.</p>";
 
            //TrackChangesTextViewer7.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            //TrackChangesTextViewer8.Content = "<p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506896487\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:54:56 PM\" class=\"reFormat reU0\">Hey</strong> d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506816091\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506816211\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:36 PM\" class=\"reU0\">i</ins>ddle d<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506819945\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:39 PM\" class=\"reU0\">o</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506820072\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:40 PM\" class=\"reU0\">i</ins>ddle,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506825128\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506825138\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:45 PM\" class=\"reU0\">Cat</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506901565\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:01 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">and</span> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506830574\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Violin</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506830584\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:53:50 PM\" class=\"reU0\">Fiddle</ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506836430\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:53:56 PM\" class=\"reU0\">Horse</del><ins author=\"Joseph Wee\" timestamp=\"1462506919979\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506919979\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:19 PM\" class=\"reFormat reU0\">Cow</em></ins> jump<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508602003\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:22 PM\" class=\"reU0\">e</ins>d <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506846003\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">under</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462506846003\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:54:06 PM\" class=\"reU0\">over</ins> the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506851740\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:11 PM\" class=\"reU0\">Sun</del><ins author=\"Joseph Wee\" timestamp=\"1462506925838\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506925838\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:25 PM\" class=\"reFormat reU0\">Moon</em></ins>,</p><p>The <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506860730\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:20 PM\" class=\"reU0\">big</del><ins author=\"Joseph Wee\" timestamp=\"1462506932675\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506932675\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:32 PM\" class=\"reFormat reU0\">little</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506865065\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:25 PM\" class=\"reU0\">cat</del><ins author=\"Joseph Wee\" timestamp=\"1462506937099\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462506937099\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:37 PM\" class=\"reFormat reU0\">dog</strong></ins> laugh<ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462508604880\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:23:24 PM\" class=\"reU0\">e</ins>d to see such <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506872681\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:32 PM\" class=\"reU0\">Fun</del><ins author=\"Joseph Wee\" timestamp=\"1462506942654\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506942654\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:42 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">Craft</span></ins>,</p><p>And the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506878567\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:38 PM\" class=\"reU0\">Plate</del><ins author=\"Joseph Wee\" timestamp=\"1462506951024\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506951024\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:51 PM\" class=\"reFormat reU0\">Dish</em></ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506882419\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:42 PM\" class=\"reU0\">walked</del><ins author=\"Joseph Wee\" timestamp=\"1462506955471\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reU0\" command=\"Insert\"><span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462506955471\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:55:55 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">ran</span></ins> away with the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462506887037\" title=\"Deleted by Joseph Wee on 5/6/2016, 1:54:47 PM\" class=\"reU0\">Fork</del><ins author=\"Joseph Wee\" timestamp=\"1462506960737\" title=\"Inserted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reU0\" command=\"Insert\"><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462506960737\" title=\"Formatted by Joseph Wee on 5/6/2016, 1:56:00 PM\" class=\"reFormat reU0\">Spoon</em></ins>.</p>";
            //TrackChangesTextViewer9.Content = "<p><em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507395115\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:15 PM\" class=\"reFormat reU0\">Ding</em>, <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507398868\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:18 PM\" class=\"reFormat reU0\">dong</em>, bell<del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507320171\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:00 PM\" class=\"reU0\">y</del>,</p><p>Pussy’s in the <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507404597\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:24 PM\" class=\"reFormat reU0\">well</strong><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507324609\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:04 PM\" class=\"reU0\">y</del>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507408676\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:28 PM\" class=\"reFormat reU0\">Who</strong> put her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507327897\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">out</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507327897\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:07 PM\" class=\"reU0\">in</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507333117\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507333117\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:13 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507417315\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:37 PM\" class=\"reFormat reU0\">Johnny Flynn</em>.</p><p><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507421923\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:41 PM\" class=\"reFormat reU0\">Who</strong> pulled her <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507339247\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">in</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507339257\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:19 PM\" class=\"reU0\">out</ins>?</p><p><del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507343554\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Big</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507343554\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:23 PM\" class=\"reU0\">Little</ins> <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462507429803\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:49 PM\" class=\"reFormat reU0\">Tommy Stout</em>.</p><p>What a <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507433110\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:53 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">naughty</span> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507349680\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">girl</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507349680\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:29 PM\" class=\"reU0\">boy</ins> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507352929\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">is</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507352929\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:32 PM\" class=\"reU0\">was</ins> that,</p><p>To try to <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507360630\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">clown</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507360630\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:40 PM\" class=\"reU0\">drown</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507437759\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:03:57 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">poor</span> pussy <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507366623\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507366623\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:46 PM\" class=\"reU0\">cat</ins>,</p><p>Who never did <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507371204\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">her</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507371214\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:02:51 PM\" class=\"reU0\">him</ins> <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462507445129\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:05 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">any</span> harm,</p><p>But killed all the <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507377969\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:02:57 PM\" class=\"reU0\">lice</del><ins author=\"Joseph Wee\" timestamp=\"1462507452521\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reU0\" command=\"Insert\"><strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462507452521\" title=\"Formatted by Joseph Wee on 5/6/2016, 2:04:12 PM\" class=\"reFormat reU0\">mice</strong></ins> in the farmer's <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462507383499\" title=\"Deleted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">hut</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462507383499\" title=\"Inserted by Joseph Wee on 5/6/2016, 2:03:03 PM\" class=\"reU0\">barn</ins>.</p>";
 
            //TrackChangesTextViewer10.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
 
            TrackChangesTextViewer1.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer2.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer3.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer4.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer5.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer6.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer7.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer8.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer9.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
            TrackChangesTextViewer10.Content = "The <span author=\"Joseph Wee\" command=\"Underline\" timestamp=\"1462500472184\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:52 PM\" class=\"reFormat reU0\" style=\"text-decoration: underline;\">quick</span> <strong author=\"Joseph Wee\" command=\"Bold\" timestamp=\"1462500477102\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:07:57 PM\" class=\"reFormat reU0\">brown</strong> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499779145\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:19 AM\" class=\"reU0\">dog</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499780480\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:20 AM\" class=\"reU0\">fox</ins> jumps <sup author=\"Joseph Wee\" command=\"Superscript\" timestamp=\"1462500484214\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:04 PM\" class=\"reFormat reU0\">over</sup> the <em author=\"Joseph Wee\" command=\"Italic\" timestamp=\"1462500496627\" title=\"Formatted by Joseph Wee on 5/6/2016, 12:08:16 PM\" class=\"reFormat reU0\">lazy</em> <del author=\"Joseph Wee\" command=\"Delete\" timestamp=\"1462499787189\" title=\"Deleted by Joseph Wee on 5/6/2016, 11:56:27 AM\" class=\"reU0\">fox</del><ins author=\"Joseph Wee\" command=\"Insert\" timestamp=\"1462499788188\" title=\"Inserted by Joseph Wee on 5/6/2016, 11:56:28 AM\" class=\"reU0\">dog</ins>.";
        }
    }
 
    protected void btnPostback_Command(object sender, CommandEventArgs e)
    {
        System.Threading.Thread.Sleep(2000);
    }
}

 

TrackChangesTextViewer.ascx.cs

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TrackChangesTextViewer.ascx.cs" Inherits="TestRadEditor.UserControls.TrackChangesTextViewer" %>
<div style="display: none">
    <telerik:RadEditor ID="redEditor" runat="server" RenderMode="Lightweight" EnableTrackChanges="true" TrackChangesSettings-CanAcceptTrackChanges="true" Width="750px" Height="600px"></telerik:RadEditor>
</div>
<telerik:RadTabStrip ID="rtsTabs" runat="server" MultiPageID="rmpTabs">
    <Tabs>
        <telerik:RadTab PageViewID="rpvCurrent" Text="Current" Selected="true" />
        <telerik:RadTab PageViewID="rpvOriginal" Text="Original" />
        <telerik:RadTab PageViewID="rpvFinal" Text="Final" />
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="rmpTabs" runat="server">
    <telerik:RadPageView ID="rpvCurrent" runat="server" Selected="true">
        Current
        <div id="divCurrent" runat="server"></div>
    </telerik:RadPageView>
    <telerik:RadPageView ID="rpvOriginal" runat="server">
        Original
        <div id="divOriginal" runat="server"></div>
    </telerik:RadPageView>
    <telerik:RadPageView ID="rpvFinal" runat="server">
        Final
        <div id="divFinal" runat="server"></div>
    </telerik:RadPageView>
</telerik:RadMultiPage>
<script type="text/javascript">
    //Put your JavaScript code here.
 
    function PopulateOriginal(divCurrentClientId, radEditorClientId, divOriginalClientId) {
 
        console.log('PopulateOriginal');
 
        var currentHtml = $('#' + divCurrentClientId).html();
 
        var editor = $find(radEditorClientId);
        //editor.set_html(currentHtml);
 
        var originalHtml = editor.get_htmlRejectChanges();
 
        $('#' + divOriginalClientId).html(originalHtml);
    }
 
    function PopulateFinal(divCurrentClientId, radEditorClientId, divFinalClientId) {
 
        console.log('PopulateFinal');
 
        var currentHtml = $('#' + divCurrentClientId).html();
 
        var editor = $find(radEditorClientId);
        //editor.set_html(currentHtml);
 
        var finalHtml = editor.get_htmlAcceptChanges();
 
        $('#' + divFinalClientId).html(finalHtml);
    }
 
<%--    $(document).ready(function () {
 
        $('#' + '<%=divCurrent.ClientID%>').bind("DOMSubtreeModified", function(){
            PopulateOriginal();
            PopulateFinal();
        });
 
    });--%>
</script>

 

TrackChangesTextViewer.ascx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;
 
namespace TestRadEditor.UserControls
{
    public partial class TrackChangesTextViewer : System.Web.UI.UserControl
    {
        public string Content
        {
            get
            {
                return divCurrent.InnerHtml;
            }
            set
            {
                divCurrent.InnerHtml = value;
                redEditor.Content = value;
 
                string scriptPopulateOriginal =
                    string.Format(
                    "setTimeout(function() {{ PopulateOriginal('{0}','{1}','{2}'); }}, 500);",
                    divCurrent.ClientID,
                    redEditor.ClientID,
                    divOriginal.ClientID
                    );
 
                ScriptManager.RegisterStartupScript(Page, typeof(Page), Guid.NewGuid().ToString(), scriptPopulateOriginal, true);
 
                string scriptPopulateFinal =
                    string.Format(
                    "setTimeout(function() {{ PopulateFinal('{0}','{1}','{2}'); }}, 500);",
                    divCurrent.ClientID,
                    redEditor.ClientID,
                    divFinal.ClientID
                    );
 
                ScriptManager.RegisterStartupScript(Page, typeof(Page), Guid.NewGuid().ToString(), scriptPopulateFinal, true);
            }
        }
 
        protected void Page_Load(object sender, EventArgs e)
        {
            //redEditor.Content = divCurrent.InnerHtml;
            //redEditor.AcceptTrackChanges();
 
            //divFinal.InnerHtml = redEditor.Content;
 
            //redEditor.Content = divCurrent.InnerHtml;
            //redEditor.RejectTrackChanges();
 
            //divOriginal.InnerHtml = redEditor.Content;
        }
    }
}

 

 

 

 

 

 

 

 

 

0
Ianko
Telerik team
answered on 09 May 2016, 07:54 AM
Hi Joseph,

I have answered to this query in the support ticket sent to us. 

For anyone interested in the same topic: The solution is to disable the FixUlBoldItalic filter on the server:
RE1.DisableFilter(Telerik.Web.UI.EditorFilters.FixUlBoldItalic);


Regards,
Ianko
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
Imran
Top achievements
Rank 1
answered on 12 Oct 2018, 10:38 AM

Hello Ianko,

I am facing the similar issues with Radeditor using Telerik Ajax C#:
I would like to brief the exact issues and how they are persisting. Below code snippet is used for design level:

           <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ToolbarMode="RibbonBar" Height="600px"
                            EnableTrackChanges="true" ToolsFile="word-like-tools.xml"
                            ContentFilters="MakeUrlsAbsolute,DefaultFilters, PdfExportFilter" SkinID="Metro"
                            OnClientLoad="OnClientLoad">
                            <TrackChangesSettings CanAcceptTrackChanges="true" UserCssId="fonthighlighters" />
                            <ExportSettings OpenInNewWindow="true"></ExportSettings>
                            <ImageManager
                                ViewPaths="~/assets/PageEditorImages/images/UserDir/Marketing/"
                                UploadPaths="~/assets/PageEditorImages/images/UserDir/Marketing/"
                                 /> 
                            <ContextMenus>
                                <telerik:EditorContextMenu TagName="BODY">
                                    <telerik:EditorTool Name="Cut" />
                                    <telerik:EditorTool Name="Copy" />
                                    <telerik:EditorTool Name="Paste" />
                                    <telerik:EditorTool Name="PastefromWord" />
                                    <telerik:EditorTool Name="PastePlainText" />
                                    <telerik:EditorTool Name="PasteAsHtml" />
                                </telerik:EditorContextMenu>
                            </ContextMenus> 
                        </telerik:RadEditor>

and this is how we are retrieving editor content before and after tracking acceptance. 

CMSPage objCMSPage = new CMSPage();
                objCMSPage.Page_Title = ((System.Web.UI.HtmlControls.HtmlInputText)(this.Parent.FindControl("txtPageName"))).Value;
                objCMSPage.Heading = txtHeading.Value;
                objCMSPage.Sub_Heading = txtSubHeading.Value;
                objCMSPage.EditorWithTracking = RadEditor1.Content;                
                RadEditor1.AcceptTrackChanges(); 
                objCMSPage.Editor = RadEditor1.Content;

The specific case is that if i delete the entire line which contains bullets, it doesn't delete the bullets even after accept changes and keep the background color of the deleted lines and couldn't delete that space in between.


I am sharing the actual and after accept changes content after my deletion. 

0
Imran
Top achievements
Rank 1
answered on 12 Oct 2018, 11:51 AM

Hi,

Adding to the above query, do we have limitations on Editor for track changes. e.g. i can't capture the tracking of change, if i make any font size and heading change or making copy paste.

Are Tools given in telerik link only supported for track changes ?

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

Thanks.

0
Rumen
Telerik team
answered on 15 Oct 2018, 02:04 PM
Hi Imran,

The following commands are officially supported by Track Changes and are designed to work with tracked content:

  • Bold
  • Italic
  • Underline
  • Indent
  • Outdent
  • JustifyLeft
  • JustifyRight
  • JustifyCenter
  • JustifyFull
  • Superscript
  • Subscript
  • Insert Table
  • Insert Link
  • Insert Ordered List
  • Insert Unordered List

The list is available in the documentation article Supported Commands.

I am afraid that the Font Name and Format Block tools are not among the supported by the track changes features.

Best regards,
Rumen
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Imran
Top achievements
Rank 1
answered on 16 Oct 2018, 07:41 PM

Hi Rumen,

Thanks for providing the information. 

Is there any way that you can support us for the other features of Track changes. Looking forward to hearing you on this. 

In addition to that, I have made one more query above, copying the same again for you:

---------------------------------------------------------------------------------------------------------------------

I am facing the similar issues with Radeditor using Telerik Ajax C#:
I would like to brief the exact issues and how it is persisting. Below code snippet is used for design level:

           <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ToolbarMode="RibbonBar" Height="600px"
                            EnableTrackChanges="true" ToolsFile="word-like-tools.xml"
                            ContentFilters="MakeUrlsAbsolute,DefaultFilters, PdfExportFilter" SkinID="Metro"
                            OnClientLoad="OnClientLoad">
                            <TrackChangesSettings CanAcceptTrackChanges="true" UserCssId="fonthighlighters" />
                            <ExportSettings OpenInNewWindow="true"></ExportSettings>
                            <ImageManager
                                ViewPaths="~/assets/PageEditorImages/images/UserDir/Marketing/"
                                UploadPaths="~/assets/PageEditorImages/images/UserDir/Marketing/"
                                 /> 
                            <ContextMenus>
                                <telerik:EditorContextMenu TagName="BODY">
                                    <telerik:EditorTool Name="Cut" />
                                    <telerik:EditorTool Name="Copy" />
                                    <telerik:EditorTool Name="Paste" />
                                    <telerik:EditorTool Name="PastefromWord" />
                                    <telerik:EditorTool Name="PastePlainText" />
                                    <telerik:EditorTool Name="PasteAsHtml" />
                                </telerik:EditorContextMenu>
                            </ContextMenus> 
                        </telerik:RadEditor>

and this is how we are retrieving editor content before and after tracking acceptance. 

CMSPage objCMSPage = new CMSPage();
objCMSPage.Page_Title = ((System.Web.UI.HtmlControls.HtmlInputText)(this.Parent.FindControl("txtPageName"))).Value;
                objCMSPage.Heading = txtHeading.Value;
                objCMSPage.Sub_Heading = txtSubHeading.Value;
                objCMSPage.EditorWithTracking = RadEditor1.Content;                
                RadEditor1.AcceptTrackChanges(); 
                objCMSPage.Editor = RadEditor1.Content;

The issue is as we are deleting the entire line which contains bullets, it doesn't delete the bullets. We are using server side Acceptchanges() method and keep the background color of the deleted lines. 

our project preference is to use the serverside Acceptchanges method instead of using client end methods. I want to mention here that client side Acceptchanges is working fine, however it is turn out to be slow when editor has large data to handle. 

I am sharing the actual and after accept changes content on deletion. Let me know in case you have any query. 

 

0
Rumen
Telerik team
answered on 19 Oct 2018, 02:35 PM
Hello Imran,

Straight to the points:
  • Thank you for the feature request for which I awarded you with Telerik points. The implementation of the Font Size and FormatBlock commands will require a lot of dev effort and QA testing in a tightly scheduled roadmap where we strive for stability and bug fixing and I cannot promised that it will be implemented soon. My advice is to log it in the AJAX Feedback Portal which will allow the community for vote for its implementation.
  • The second part of the post reports a bug. I've logged it for fixing. Please, follow this feedback item for updates on resolution and estimations.


    A possible workaround is using the corresponding method via the Client-side API. To do that you can use this example JavaScript method:

    <telerik:RadEditor RenderMode="Lightweight" ID="RadEditor1" EnableTrackChanges="true" runat="server" Width="750px"
        Height="400px" ToolsFile="~/ToolsFile.xml">
        <TrackChangesSettings Author="RadEditorUser" CanAcceptTrackChanges="true" UserCssId="reU0"></TrackChangesSettings>
        <Content>
            <ol>
                <li>test
                <ol>
                    <li>test2</li>
                </ol>
                </li>
                <li>test3</li>
            </ol>
        </Content>
    </telerik:RadEditor>
    <asp:Button Text="Get Content" _OnClientClick="acceptAllChanges();" OnClick="GetContent" runat="server" />
    <script>
        function acceptAllChanges() {
            var editor = $find("<%= RadEditor1.ClientID %>");
            var trackChanges = Telerik.Web.UI.Editor.TrackChanges;
      
            trackChanges.initialize(editor);
            trackChanges.acceptAllChangesSilently();
        }
    </script>

    Codebehind:
    protected void GetContent(object sender, EventArgs e)
    {
        EditorWithoutTracking.Text = RadEditor1.Content;
       // RadEditor1.AcceptTrackChanges();
        EditorWithTracking.Text = RadEditor1.Content;
    }
I also updated your points for reporting this issue.


Best regards,
Rumen
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Imran
Top achievements
Rank 1
answered on 20 Oct 2018, 05:29 PM

Hi Rumen,

I have implemented the client side method until the server side functionality get solves. However, Client side function create a wait prompt if we are dealing with larger content so it is necessity of the system to use server side method as soon as it get fix from your end. 

Looking forward to hearing you on this further.

Thanks 

 

0
Imran
Top achievements
Rank 1
answered on 05 Dec 2018, 07:00 AM

Dear Support Team,

With reference of the telerik plug-in, I would like to bring some more issues which are not functioning properly with Rad Editor mentioned below:

1. While pressing backspace button as it moves to last word of previous line it automatically shows Strip font elements, Strip word formatting as this was not selected.
2. Another problem observed as after selecting a particular text and select numbered list from tool-tip, it perfectly shows the numbering, now again select the text and select the ‘heading 2’ option to change heading size, it perfectly changes the size now again if I try to un-number it’s not enabled while specific updated text are selected.

Telerik utilized have following details:
Version or build number: 
Also, for reference kindly check the attached screenshot which would suffice in understanding the above reported concerns. 

I am looking forward to receive an early resolution for the same.

Thanks in advance.
Regards,

0
Rumen
Telerik team
answered on 07 Dec 2018, 04:46 PM
Hi Imran,

Thank you for the provided information. Would it be possible to provide a video, you can capture it with free tools like https://www.techsmith.com/jing-tool.html or https://screencast-o-matic.com/ since this will show how exactly to reproduce the issues?
Please also provide the initial contents for the beginning the test and also the produced contents.

Thank you in advance!

Looking forward to hearing from you,
Rumen
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Editor
Asked by
Joseph
Top achievements
Rank 1
Answers by
Joseph
Top achievements
Rank 1
Ianko
Telerik team
Imran
Top achievements
Rank 1
Rumen
Telerik team
Share this question
or