X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/src/widgets/menu/DateMenu.js diff --git a/src/widgets/menu/DateMenu.js b/src/widgets/menu/DateMenu.js deleted file mode 100644 index 3a879f11..00000000 --- a/src/widgets/menu/DateMenu.js +++ /dev/null @@ -1,90 +0,0 @@ -/*! - * Ext JS Library 3.0.0 - * Copyright(c) 2006-2009 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license - */ -/** - * @class Ext.menu.DateMenu - * @extends Ext.menu.Menu - * A menu containing a {@link Ext.DatePicker} Component. - * @xtype datemenu - */ - Ext.menu.DateMenu = Ext.extend(Ext.menu.Menu, { - /** - * @cfg {Boolean} enableScrolling - * @hide - */ - enableScrolling: false, - - /** - * @cfg {Boolean} hideOnClick - * False to continue showing the menu after a date is selected, defaults to true. - */ - hideOnClick: true, - - /** - * @cfg {Number} maxHeight - * @hide - */ - /** - * @cfg {Number} scrollIncrement - * @hide - */ - /** - * @property picker - * @type DatePicker - * The {@link Ext.DatePicker} instance for this DateMenu - */ - cls: 'x-date-menu', - - /** - * @event click - * @hide - */ - - /** - * @event itemclick - * @hide - */ - - initComponent: function(){ - this.on('beforeshow', this.onBeforeShow, this); - if(this.strict = (Ext.isIE7 && Ext.isStrict)){ - this.on('show', this.onShow, this, {single: true, delay: 20}); - } - Ext.apply(this, { - plain: true, - showSeparator: false, - items: this.picker = new Ext.DatePicker(Ext.apply({ - internalRender: this.strict || !Ext.isIE, - ctCls: 'x-menu-date-item' - }, this.initialConfig)) - }); - this.picker.purgeListeners(); - Ext.menu.DateMenu.superclass.initComponent.call(this); - this.relayEvents(this.picker, ["select"]); - this.on('select', this.menuHide, this); - if(this.handler){ - this.on('select', this.handler, this.scope || this); - } - }, - - menuHide: function() { - if(this.hideOnClick){ - this.hide(true); - } - }, - - onBeforeShow: function(){ - if(this.picker){ - this.picker.hideMonthPicker(true); - } - }, - - onShow: function(){ - var el = this.picker.getEl(); - el.setWidth(el.getWidth()); //nasty hack for IE7 strict mode - } - }); - Ext.reg('datemenu', Ext.menu.DateMenu); \ No newline at end of file