Re: When using programatically Editor.CustomCulture = "de-DE" and clicking SAVE-Button, the event PostBackCommand is not fired.

  •  01-16-2006, 3:21 PM

    Re: When using programatically Editor.CustomCulture = "de-DE" and clicking SAVE-Button, the event PostBackCommand is not fired.

    Hello,
     
    here is the code. When I hit the SAVE-Button the event Editor1_PostBackCommand is not fired.

    default3.aspx
    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <CE:Editor id="Editor1" runat="server" AutoConfigure="Full"></CE:Editor>
        </form>
    </body>
    </html>

    default3.aspx.vb
    Partial Class Default3
        Inherits System.Web.UI.Page

        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Me.Editor1.CustomCulture = "de-DE"
        End Sub

        Protected Sub Editor1_PostBackCommand(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs) Handles Editor1.PostBackCommand
            Response.Write("Event fired!")
        End Sub

    End Class
View Complete Thread