Close
Loading, please wait...
This announcement will hide in 60 seconds

YUI Plugin: Lighter - Documentation

2007-05-26
RSS Channel bookmark this link

Simple Use Case: YAHOO.plugin.Lighter

Markup (lighter container element):
<div class="hotarea1 yui-cms-selector">
  <div class="yui-cms-item">
      Hot item #1
  </div>
  <div class="yui-cms-item">
      Hot item #2
  </div>
</div>

Script:
YAHOO.plugin.Lighter.add( 'hotarea1' );
The Ligther Manager explore the areas with className "hotarea1" and highlight the items with className "yui-cms-item" on mouseover event.

Singleton: YAHOO.plugin.Lighter

YAHOO.plugin.Lighter.add(str className, obj config);

Arguments:
(1) className: className of the area (don't matter if the markup exist or no, the lighter is based on the "event-driven technique" to monitoring the hot areas).
(2) Configuration Object: JS object defining configuration properties for the area. See Configuration section for full list.

Solutions:

YAHOO.plugin.Lighter.add( "myhotareas", {
    persistent: false,
    onSelect: function ( element, area ) {
        alert ( 'Highlighting the element inside the area...');
    },
    onReset: function ( area ) {
        alert ( 'Removing the highlighting from all the elements inside this area.' );
    }
});

Leave the selected area highlighted:

Use the attribute "persistent" in the configuration to leave the last selected area highlighted when the mouse go out of this area.

Use the CSS rules to customize your lighter expirience:

#leftcolumn div.myhotarea.yui-cms-selector div.yui-cms-item {
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  margin: 5px;
  padding: 5px;
}
#leftcolumn div.myhotarea.yui-cms-selector div.yui-cms-item.selected {
  border: 1px solid #333333;
  background-color: #cccccc;
}

The lighter add a new className "selected" to the item (yui-cms-item) when the mouse is over the element.

Key Interesting Moments in Lighter

Events Fires Arguments
onSelect ...on mouseover a highlightable item element [0] element: item DOM ref, [1] parent: area DOM ref
onReset ...when the lighter reset all items inside an area [0] parent: area DOM ref

Key Lighter Configuration Options

Option (type) Default Description
className (s) null The className of the explorable areas

Lighter DOM Structure

classname: yui-cms-selector
classname: yui-cms-item
content fo the element 1
classname: yui-cms-item
content fo the element 2

Dependencies

Requires:
YUI:YAHOO, YUI:Dom and YUI:Event
YUI-CMS:bubbling

Facts

- Use the same className for several areas inside the document
- Use the onSelect and onReset events to create your our functionalities
- Use the CSS rules to create different behaviors for the same className

No Comment yet

Latest Releases

Accordion Manager
This YUI Widget will allow you to create expandable and collapsible areas using the correct HTML and CSS, but without writing a single line of javascript code. (new)

Loading Mask
The Loading Mask widget will hide all the page's content until the onLoad's event, which mean that the website will not be displayed until the current page be fully loaded. Also this widget can be used in conjunction with the YUI Connection Manager to block the actions over the page until the AJAX's request finish. (new)

 
Hot Components

Accordion Manager
Create expandable and collapsible areas using the correct HTML and CSS, but without writing a single line of javascript code. (released)

Bubbling Core
The bubbling core now include a generic communication mechanism for widget2widget, widget2browser and widget2server messages. (updated lately)

Tooltip Manager
Improved, now using the YUI Overlay instead YUI Tooltips, also introduce a new feature, "content onDemand" using the YUI connection manager. (updated lately)

 
Coming Soon

Bubbling Library for YUI 3.x
A new version of the Bubbling Library compatible with the NEW YUI 3.x. (comming soon)

 
Recommended Reading

Using the YUI TabView Control with the Dispatcher Plugin
YUI Dispatcher Plugin and how to use it along with the YUI TabView to load on-demand content using the YUI Connection Manager.

The Bubbling Technique & Custom Event, YUI’s Secret Weapon
In this article I’ll share my experiences in the event-driven programming within the web browser and show how the Bubbling Library, combined with YUI’s Custom Event capabilities, can create an unobtrusive behavioral layer suitable for powerful web applications.

Event-Driven Web Application Design
I recommend you to read carefully the Christian Heilmann's paper, where he wrote about how to plan an Event-Driven application, and how this technique will become the future of the web application as a result of an evolutive process.

A JavaScript Module Pattern
Eric Miraglia's detailed explanation of how to use the closures and specifically the module pattern (singlenton) as a flexible and multi-funcional structure...

 
Related Links

Yahoo! UI Library (YUI)
YUI Official Website at the Yahoo! Developer Network.

YUI Official Forum
Get help and share your knowledges thru the frenetic javascript mailing list at Yahoo! Developer Network...

Motionbox EventHandler
For those who use propotype instead YUI, here is an implementation of the bubbling core routine for Propotype, I never tested it, but it's seen like a good implementation.

 
 
Linux MySql Server PHP Mozilla FireFox FireBug YAHOO! Bubbling Library
This website is XHTML 1.0 valid! This website can be browsing with all browsers! This website is valid for Level A of Web Accessibility!