Hi jreeney,
you can try this way:
<CE:Editor id="Editor1" runat="server" OnPostBackCommand="Editor1_PostBackCommand" ></CE:Editor>
<script runat="server">
protected void Editor1_PostBackCommand(object sender, CommandEventArgs e)
{
Editor1.Text = "Get postback command : " + e.CommandName;
if (e.CommandName == "Save")
{
Editor1.Text = "test";
}
}
</script>
Regards
Ken