YUI Library JavaScript DHTML





    
Example of Specifying Custom Labels and Element IDs for Color Picker

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}












  #yui-picker-panel { position: relative; padding: 6px; background-color: #eeeeee; width: 450px; height: 240px; }




Example of Specifying Custom Labels and Element IDs for Color Picker



  

The Color Picker below looks much like the pickers in other examples.  However, two changes have been made:



      
  1. Element IDs have been customized: Color Picker uses a default set of element IDs when it creates the DOM for your picker instance. If you want to control those IDs, you may need to change these defaults.  (In addition to the method described here, you can also pass in new IDs via the constructor; see the Customizing Element IDs section of the Color Picker User's Guide.

  2.   
  3. Form labels have been customized: Instead of R, G, and B, we're using here the strings "Red", "Green", and "Blue". This illustrates the technique you might use to translate your Color Picker interface into multiple languages. 


      



  



//dump the contents of the element IDs object to the Logger:
YAHOO.log("The full contents of the YAHOO.widget.ColorPicker.prototype.ID object: " + YAHOO.lang.dump(YAHOO.widget.ColorPicker.prototype.ID), "info", "example");
//dump the contents of the interface text strings object to the Logger:
YAHOO.log("The full contents of the YAHOO.widget.ColorPicker.prototype.TXT object: " + YAHOO.lang.dump(YAHOO.widget.ColorPicker.prototype.TXT), "info", "example");
//Using an anonymous function keeps our variables
//out of the global namespace.
(function() {
    var Event = YAHOO.util.Event,
        picker;
    // this is how to override some or all of the
    // element ids used by the control
    var ids = YAHOO.lang.merge(
        YAHOO.widget.ColorPicker.prototype.ID, {
            R: "custom_R",
            G: "custom_G",
            B: "custom_B"
        });
    // this is how to change the text generated
    // by the control
    var txt = YAHOO.lang.merge(
        YAHOO.widget.ColorPicker.prototype.TXT, {
            R: "Red",
            G: "Green",
            B: "Blue"
        });
  
  //Having changed the default element ids, you can
  //instantiate your picker:
    Event.onDOMReady(function() {
            picker = new YAHOO.widget.ColorPicker("yui-picker-panel", {
                    showhsvcontrols: true,
                    showhexcontrols: true,
                    ids: ids,
                    txt: txt,
                    animate: false
                });
        });
})();





   
  
yui_2.7.0b.zip( 4,431 k)