YUI recommends YUI3.

YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.

This documentation is no longer maintained.

YUI Library Examples: Rich Text Editor: Simple Editor — Basic Buttons

Rich Text Editor: Simple Editor — Basic Buttons

This example demonstrates how to use the SimpleEditor Control with Basic Buttons.

Setting up the Editors HTML

Setting up the Editor's HTML is done by creating a textarea control on the page.

1<form method="post" action="#" id="form1"
2<textarea id="editor" name="editor" rows="20" cols="75"
3This is some more test text.<br>This is some more test text.<br>This is some more test text.<br> 
4This is some more test text.<br>This is some more test text.<br>This is some more test text. 
5</textarea> 
6</form> 
view plain | print | ?

Setting up the Editors Javascript

Note: This example also includes ContainerCore so that we can use the color buttons.

Once the textarea is on the page, then initialize the Editor like this:

1(function() { 
2    //Setup some private variables 
3    var Dom = YAHOO.util.Dom, 
4        Event = YAHOO.util.Event; 
5 
6        //The SimpleEditor config 
7        var myConfig = { 
8            height: '300px'
9            width: '600px'
10            dompath: true
11            focusAtStart: true 
12        }; 
13 
14    //Now let's load the SimpleEditor.. 
15    var myEditor = new YAHOO.widget.SimpleEditor('editor', myConfig); 
16    myEditor.render(); 
17})(); 
view plain | print | ?

Copyright © 2013 Yahoo! Inc. All rights reserved.

Privacy Policy - Copyright Policy - Job Openings