override protected void OnInit(System.EventArgs e) { // get the forum editor based on the settings _forumEditor = YAF.Editor.EditorHelper.CreateEditorFromType(PageContext.BoardSettings.ForumEditor); EditorLine.Controls.Add(_forumEditor); base.OnInit(e); }
override protected void OnInit(EventArgs e) { // since signatures are so small only allow BBCode in them... _sig = new YAF.Editor.BBCodeEditor(); EditorLine.Controls.Add(_sig); save.Click += new EventHandler(save_Click); cancel.Click += new EventHandler(cancel_Click); // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit(e); }
override protected void OnInit(EventArgs e) { // Quick Reply Modification Begin _quickReplyEditor = new YAF.Editor.BasicBBCodeEditor(); QuickReplyLine.Controls.Add(_quickReplyEditor); QuickReply.Click += new EventHandler(QuickReply_Click); Pager.PageChange += new EventHandler(Pager_PageChange); // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit(e); }
override protected void OnInit( EventArgs e ) { // since signatures are so small only allow BBCode in them... _sig = new YAF.Editor.BBCodeEditor(); EditorLine.Controls.Add( _sig ); save.Click += new EventHandler( save_Click ); cancel.Click += new EventHandler( cancel_Click ); // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit( e ); }
override protected void OnInit( EventArgs e ) { // Quick Reply Modification Begin _quickReplyEditor = new YAF.Editor.BasicBBCodeEditor(); QuickReplyLine.Controls.Add( _quickReplyEditor ); QuickReply.Click += new EventHandler( QuickReply_Click ); Pager.PageChange += new EventHandler( Pager_PageChange ); // // CODEGEN: This call is required by the ASP.NET Web Form Designer. // InitializeComponent(); base.OnInit( e ); }