After performing a typical .NET event configuration for the OnSaveClick event all the editor does is throw a client side/silent error. There is no postback of any kind.
typical control declaration...
<lcb:FreeTextBox ID="Editor" Focus="true" runat="Server" Width="100%" Height="100%" OnSaveClick="Editor_SaveClick" toolbarlayout="Cut,Copy,Paste,Delete;Undo,Redo,Print,Save" />
typical handler declaration...
protected void Editor_SaveClick(object sender, EventArgs e) {
String text = this.Editor.Text;
}
Any suggestions/insight?