[CLOSED] HTMLEditor Issue after last Update

  1. #1

    [CLOSED] HTMLEditor Issue after last Update

    Hey Guys,

    Please try the following code. It throws an exception on setting value to HTMLEditor. However if I set a value on page load it works.

    Aspx Page
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test2.aspx.cs" Inherits="test2" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title></title>
    
        
    </head>
    <body>
        <form id="form1" runat="server" method="post">
     <ext:ResourceManager runat="server" ID="scp1"></ext:ResourceManager>
        <ext:HtmlEditor ID="HtmlEditor1" runat="server">
        </ext:HtmlEditor>
       
        <ext:Button Text="Click Me" ID="btn" runat="server">
        <DirectEvents>
        <Click OnEvent="btnClick"></Click>
        </DirectEvents>
        </ext:Button>
        
        </form>
    </body>
    </html>
    Code Page

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    
    
        public partial class test2 : System.Web.UI.Page
        {
            public string testEditor
            {
                get { return ""; }
                set
                {
                   
                    this.HtmlEditor1.Text = "HTMLEditor";
    
                }
            }
            protected void Page_Load(object sender, EventArgs e)
            {
                     
            }
    
            protected void btnClick(object sender, Ext.Net.DirectEventArgs e) {
                testEditor = "";
            
            }
        }
  2. #2

    RE: [CLOSED] HTMLEditor Issue after last Update

    Hi,

    Fixed. Please update from SVN

Similar Threads

  1. [CLOSED] HtmlEditor copy issue on Chrome
    By bogc in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 28, 2011, 7:31 PM
  2. [CLOSED] Checkbox value update issue.
    By Marcelo in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Sep 20, 2011, 11:16 AM
  3. [CLOSED] HtmlEditor Issue in IE 9
    By logicspeak in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 15, 2011, 8:38 PM
  4. [CLOSED] V0.8 to v1.0 update issue
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Dec 21, 2010, 7:19 AM
  5. HtmlEditor Issue
    By DasPhansom in forum 1.x Help
    Replies: 2
    Last Post: Sep 28, 2009, 11:57 AM

Posting Permissions