Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hello Martin,
Have you tried this: "Enabling the tinyMCE XHTML editor for non-authenticated users" in http://world.episerver.com/Documentation/Items/Tech-Notes/EPiServer-CMS-6/EPiServer-CMS-6-R2/TinyMCE-Developers-Guide3/
Hi Martin
I would like to use TinyMCE editor (PropertyXHTMLString) webcontrol as a normal server control on aspx instead of property. Can you tell me how you have done that?
Hi,
In short, you only need to do this in your ASPX page:
Example:
<%@ Register TagPrefix="tinyMCE" Namespace="EPiServer.Editor.TinyMCE" Assembly="EPiServer" %>
<tinyMCE:Editor Width="460" Height="200" theme="advanced" runat="server" />
Hi Martin
Thanks, it's works but it's not showing toolbar. See below snap. Any idea?
Hi Martin
I found below article and I am following it. I hope it will work.
http://world.episerver.com/Documentation/Items/Tech-Notes/EPiServer-CMS-6/EPiServer-CMS-6-R2/TinyMCE-Developers-Guide/
Hello,
You can add a custom toolbar like this:
string[] toolbarRow1 = new string[] { "bold", "italic", "underline" };
txtEditor.ToolbarRows.Add(new ToolbarRow(toolbarRow1));
Have encountered problems using the EPiServer TinyMCE web control on an ASPX page. There´s no problem when user has admin or edit access. But when with a regular user the control can´t be loaded. So when displaying the page the user will be promted a couple of times for username and password and then a message dialog with the text "Load jQuery first!" will be shown. The page will load but with some JavaScript errors. Fyi: The site is using windows authentication.
Anyone who encountered the same "access problem" exposing the TinyMCE control outside the edit/admin mode?