Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
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