46691587b96944e070151e755550f742d1293929.svn-base 451 B

12345678910111213141516
  1. /*
  2. * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
  3. *
  4. * http://extjs.com/license
  5. */
  6. Ext.menu.ColorItem = function(A) {
  7. Ext.menu.ColorItem.superclass.constructor.call(this,
  8. new Ext.ColorPalette(A), A);
  9. this.palette = this.component;
  10. this.relayEvents(this.palette, ["select"]);
  11. if (this.selectHandler) {
  12. this.on("select", this.selectHandler, this.scope)
  13. }
  14. };
  15. Ext.extend(Ext.menu.ColorItem, Ext.menu.Adapter);