London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
editorHere = new PlaceHolder(); editorHere.ID = "custom_editor"; pls = new PropertyLongString(); pls.EditorSettings = EPiServer.SystemControls.EditorOption.All; pls.CreateChildControls("edit", editorHere); for (int i=0; i < editorHere.Controls.Count; i++) { if (editorHere.Controls[i].ToString() == "EPiServer.Editor.HtmlEditor") { EPiServer.Editor.HtmlEditor ed = (EPiServer.Editor.HtmlEditor)editorHere.Controls[i]; ed.Height = 150; if (base.Value != null) ed.Text = base.Value.ToString(); } } CopyWebAttributes( Container, editorHere); Container.Controls.Add( editorHere ); Container.Controls.Add( CreateParseValidator( editorHere ) ); // this is where I'm not sure what to
Thanks ! Danie