X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/DateMenu.html diff --git a/docs/source/DateMenu.html b/docs/source/DateMenu.html index 6674760e..933b10ba 100644 --- a/docs/source/DateMenu.html +++ b/docs/source/DateMenu.html @@ -1,11 +1,17 @@ - - - The source code - - - - -
/** + + + The source code + + + + +
/*!
+ * Ext JS Library 3.0.3
+ * 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 an {@link Ext.DatePicker} Component.

@@ -44,6 +50,12 @@ */ hideOnClick : true, +
/** + * @cfg {String} pickerId + * An id to assign to the underlying date picker. Defaults to null. + */ + pickerId : null, +
/** * @cfg {Number} maxHeight * @hide @@ -77,9 +89,10 @@ Ext.apply(this, { plain: true, showSeparator: false, - items: this.picker = new Ext.DatePicker(Ext.apply({ + items: this.picker = new Ext.DatePicker(Ext.applyIf({ internalRender: this.strict || !Ext.isIE, - ctCls: 'x-menu-date-item' + ctCls: 'x-menu-date-item', + id: this.pickerId }, this.initialConfig)) }); this.picker.purgeListeners(); @@ -115,6 +128,6 @@ } }); Ext.reg('datemenu', Ext.menu.DateMenu); -
- +
+ \ No newline at end of file