Link to home
Start Free TrialLog in
Avatar of NetSoftDS
NetSoftDSFlag for Australia

asked on

How to Dynamically Update the TinyMCE Styles Select List

I've been using the TinyMCE Javascript WYSIWYG editor for several years now, and although I wouldn't claim to be expert in its inner workings, I believe that I have a fairly solid grasp of the fundamentals. One thing however that I have never managed to accomplish is to dynamically update the Styles Select List.

I know I'm certainly not the only one to say this either, as these TinyMCE forum postings attest to...

http://tinymce.moxiecode.com/punbb/viewtopic.php?id=23068
http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=74958
http://tinymce.moxiecode.com/punbb/viewtopic.php?id=15212

I am currently developing an application which updates the TinyMCE editor content using Ajax. I also want to be able to re-load the associated stylesheet(s) when the content is changed. This is because the stylesheets can also be edited independently from the content and also because different content can come from a different HTML file with different stylesheets associated with it.

When TinyMCE is first initialised it dynamically adds any user-defined stylesheets to the head of the HTML page and then, (I think) populates the Styles Select Listbox by reading all the styles. Since this is only done once when TinyMCE is first constructed, I need a way to request TinyMCE to  re-read the styles. I attempted an ugly work-around by reloading the entire page, but this ran into browser caching problems and in any case is not a good solution.

After reading the API documentation I naturally assumed that calling "tinyMCE.activeEditor.dom.loadCSS()" would do the job for me. What I discovered, (and what others before me have also discovered), is that "loadCSS()" works when you're re-creating the entire editor instance, but NOT when you wish to simply update an existing editor instance.

After spending several days with FireBug and PhpEdit I am no closer to resolving this issue, hence this posting. If anyone knows how to do this then I would greatly appreciate some assistance please.

Thanks.


NOTE: I did write a function to clear the associated styles which I call prior to "loadCSS()" and it appears to work quite well, so I have included this below:

// Note: "isDef(arg)" is a function that checks if the argument is defined and not null

function clearStyles(editorStyles)  // "editorStyles" is an array of stylesheet relative paths
{
 try
 {
  if (!isDef(editorStyles)) return false;

  var Editor = tinyMCE.activeEditor;

  var head = Editor.dom.select('head')[0];
  for (var i=0; i<head.childNodes.length; i++)
  {
   var childNode = head.childNodes[i];
   if (isDef(childNode.rel) && childNode.rel.toLowerCase() == 'stylesheet' && isDef(childNode.href))
   {
    var href = childNode.href.toLowerCase();
    for (var j=0; j<editorStyles.length; j++)
    {
     var style = editorStyles[j];
     if (href.indexOf(style) >= 0)
     {
      Editor.dom.remove(childNode);
      delete Editor.dom.files[style];  // I also have to clear the entry out of the dom file list or else it won't be added when I call loadCSS next time this page is loaded
     }
    }
   }
  }

  Editor.controlManager.get('styleselect').items.length = 0;  // The style list will be re-populated (if empty) when the menu is shown in the function "_importClasses()" in the file "editor_template_src.js"

  if (isDef(Editor.dom.classes))
  {
   Editor.dom.classes.length = 0;  // Remove all elements before de-assigning, (just in case)
   delete Editor.dom.classes;      // De-assign the internal dom "classes" object to force it to re-parse the loaded page's DOM for style classes in the function "_importClasses()" in the file "editor_template_src.js".
  }

  return true;
 }
 catch(e) {}

 return false;
}

Open in new window

Avatar of NetSoftDS
NetSoftDS
Flag of Australia image

ASKER

It has occured to me that if TinyMCE is dynamically adding any user-defined stylesheets to the head of the HTML page when its initialised, then precisely how TinyMCE extracts the styles is unclear.  I assume that once an additonal stylesheet has been appended to the end of the head, then its styles are immediately available to the DOM allowing TinyMCE to parse them and then ultimately, to add them to the Styles Select Listbox.

(The TinyMCE "init()" function is called in a <script> tag section in the page's <head> section.)

This means that any attempts to dynamically update the Styles Select Listbox after an included stylesheet has been updated by some external process is doomed to failure, since the entire web page would need to be reloaded first, (which leads to the follwoing browser caching issue.

I have been unable to  fully disable browser caching. if I use FireFox's "Web Developer" add-on to disable the cache, everything works correctly and the styles select listsbox is properly refreshed. If I attempt to programmatically disable caching then the wheels fall off. I am using the following PHP function to do this:

function disableCache()
{
 header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
 header("Cache-Control: post-check=0, pre-check=0", false);
 header("Pragma: no-cache");
// header("Cache-Control: max-age=0, s-maxage=0, must-revalidate, proxy-revalidate, no-cache");
}

I have also tried creating a unique URL for the web page by appending a generated timestamp argument to the end of the containing web page's url... see code below:

var timeStamp = new Date();
editorFrame.window.location.href = editorFrame.window.location.href + '&timestamp=' + timeStamp.getTime();  // Add a unique url argument to force the browser to refresh, (ie. disabling any caching)

So in order to get my workaround happenning I need some help to prevent the browse caching the web page containing the TinyMCE instance.


A Further Note:
-----------------
It should be possible to dynamically remove the stylesheet from the head and then re-append it. Then the problem becomes finding the appropriate TinyMCE API call to reload the styles, (hopefully "loadCSS()" will now work). I will try this approach as soon as I get the page reload work-around functioning correctly.
ASKER CERTIFIED SOLUTION
Avatar of NetSoftDS
NetSoftDS
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial