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.
This example shows how to customize the Resize Utility for things like the Rich Text Editor Control.
Setting up the Editor's HTML is done by creating a textarea
control on the page.
Once the textarea
is on the page, then initialize the Editor like this:
Now we listen for the editorContentLoaded
event and setup our Resize instance.
Now we have a resizable Editor instance, but it doesn't resize the way we want. It only resizes the outer element. But we want the Editor to resize the content area as well.
This is where the config option setSize
comes in. When you set the setSize
option to false (only when using the proxy config),
the Resize Utility will not resize the element. It will return the data needed to resize it in the resize
Event.
So now we listen for the startResize
Event to set the disabled
option on the Editor instance.
Then we listen for the resize
Event to get the new height and width. Once we have that we can do a little math and tell the Editor instance to resize itself.
Next we will override the default Resize CSS and make the handle a little bigger.
All YUI 2.x users should review the YUI 2.8.2 security bulletin, which discusses a vulnerability present in YUI 2.4.0-2.8.1.
Copyright © 2013 Yahoo! Inc. All rights reserved.