Hello,
in my ASP.NET WebForms page I have inserted this:


<ext:HtmlEditor ID="TestEditor" Name="AppendixText" runat="server" Flex="1" MarginSpec="5 0 5 0" Height="500" EnableLinks="false">
<Plugins>
      <ext:GenericPlugin ID="HtmlUX" runat="server" InstanceName="Ext.ux.form.HtmlEditor.Word"
                                                   Path="/scripts/ext.ux/Ext.ux.form.HtmlEditor.Plugins.js" />
      <ext:GenericPlugin ID="GenericPlugin1" runat="server" InstanceName="Ext.ux.form.HtmlEditor.Table"/>
      <ext:GenericPlugin ID="GenericPlugin2" runat="server" InstanceName="Ext.ux.form.HtmlEditor.SpecialCharacters"/>
</Plugins>
</ext:HtmlEditor>
having imported the ExtJS.ux.HtmlEditor.Plugins
from GitHub,
but doesn't work (the page remains blank with javascript errors).
My goal is to provide a textarea where users can Copy&Paste text and tables from Word/Outlook.

Can anyone help me?

Luis