I have always hated how the WYSIWYG Editor does not expand by itself, so I added a click event to ours so that they will always expend when the page is opened.
Requirements: jQuery
The WYSIWYG editor uses an onclick event which is bound to a div. So, we first need to wrap the keywords that print editors, with another div. So, for example, if we have a news item Asset Builder, and we want both the summary and body editors to expand, we would do the following in the Create Layout Form:
%details-F_summary%%details-F_body%
Wrapping our keywords in divs ensures that we can more specifically target the element we want to simulate the click on.
Now, we add a little jQuery to our page to simulate a click inside each of our divs:
$(document).ready(function() { $('#editor1 div, #editor2 div').trigger('click'); });
Now our WYSIWYG Editors expend when we load the page!