Существует время, когда редактор выполняет рендеринг, к которому вы не можете получить доступ setEditorHTML
.Попробуйте это:
var myEditor = new YAHOO.widget.Editor('msgpost', {
height: '300px',
width: '522px',
dompath: false, //Turns on the bar at the bottom
animate: false, //Animates the opening, closing and moving of Editor windows
handleSubmit: true
});
myEditor.render();
// I just took a guess on which event to use here
myEditor.on('windowRender', function() {
myEditor.setEditorHTML("Hello World");
});
Вот список событий редактора YUI .