Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / DateMenu.html
diff --git a/docs/source/DateMenu.html b/docs/source/DateMenu.html
new file mode 100644 (file)
index 0000000..6674760
--- /dev/null
@@ -0,0 +1,120 @@
+<html>\r
+<head>\r
+  <title>The source code</title>\r
+    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
+    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
+</head>\r
+<body  onload="prettyPrint();">\r
+    <pre class="prettyprint lang-js"><div id="cls-Ext.menu.DateMenu"></div>/**\r
+ * @class Ext.menu.DateMenu\r
+ * @extends Ext.menu.Menu\r
+ * <p>A menu containing an {@link Ext.DatePicker} Component.</p>\r
+ * <p>Notes:</p><div class="mdetail-params"><ul>\r
+ * <li>Although not listed here, the <b>constructor</b> for this class\r
+ * accepts all of the configuration options of <b>{@link Ext.DatePicker}</b>.</li>\r
+ * <li>If subclassing DateMenu, any configuration options for the DatePicker must be\r
+ * applied to the <tt><b>initialConfig</b></tt> property of the DateMenu.\r
+ * Applying {@link Ext.DatePicker DatePicker} configuration settings to\r
+ * <b><tt>this</tt></b> will <b>not</b> affect the DatePicker's configuration.</li>\r
+ * </ul></div>\r
+ * @xtype datemenu\r
+ */\r
+ Ext.menu.DateMenu = Ext.extend(Ext.menu.Menu, {\r
+    <div id="cfg-Ext.menu.DateMenu-enableScrolling"></div>/** \r
+     * @cfg {Boolean} enableScrolling\r
+     * @hide \r
+     */\r
+    enableScrolling : false,\r
+    <div id="cfg-Ext.menu.DateMenu-handler"></div>/**\r
+     * @cfg {Function} handler\r
+     * Optional. A function that will handle the select event of this menu.\r
+     * The handler is passed the following parameters:<div class="mdetail-params"><ul>\r
+     * <li><code>picker</code> : DatePicker<div class="sub-desc">The Ext.DatePicker.</div></li>\r
+     * <li><code>date</code> : Date<div class="sub-desc">The selected date.</div></li>\r
+     * </ul></div>\r
+     */\r
+    <div id="cfg-Ext.menu.DateMenu-scope"></div>/**\r
+     * @cfg {Object} scope\r
+     * The scope (<tt><b>this</b></tt> reference) in which the <code>{@link #handler}</code>\r
+     * function will be called.  Defaults to this DateMenu instance.\r
+     */    \r
+    <div id="cfg-Ext.menu.DateMenu-hideOnClick"></div>/** \r
+     * @cfg {Boolean} hideOnClick\r
+     * False to continue showing the menu after a date is selected, defaults to true.\r
+     */\r
+    hideOnClick : true,\r
+    \r
+    <div id="cfg-Ext.menu.DateMenu-maxHeight"></div>/** \r
+     * @cfg {Number} maxHeight\r
+     * @hide \r
+     */\r
+    <div id="cfg-Ext.menu.DateMenu-scrollIncrement"></div>/** \r
+     * @cfg {Number} scrollIncrement\r
+     * @hide \r
+     */\r
+    <div id="prop-Ext.menu.DateMenu-picker"></div>/**\r
+     * The {@link Ext.DatePicker} instance for this DateMenu\r
+     * @property picker\r
+     * @type DatePicker\r
+     */\r
+    cls : 'x-date-menu',\r
+    \r
+    <div id="event-Ext.menu.DateMenu-click"></div>/**\r
+     * @event click\r
+     * @hide\r
+     */\r
+    \r
+    <div id="event-Ext.menu.DateMenu-itemclick"></div>/**\r
+     * @event itemclick\r
+     * @hide\r
+     */\r
+\r
+    initComponent : function(){\r
+        this.on('beforeshow', this.onBeforeShow, this);\r
+        if(this.strict = (Ext.isIE7 && Ext.isStrict)){\r
+            this.on('show', this.onShow, this, {single: true, delay: 20});\r
+        }\r
+        Ext.apply(this, {\r
+            plain: true,\r
+            showSeparator: false,\r
+            items: this.picker = new Ext.DatePicker(Ext.apply({\r
+                internalRender: this.strict || !Ext.isIE,\r
+                ctCls: 'x-menu-date-item'\r
+            }, this.initialConfig))\r
+        });\r
+        this.picker.purgeListeners();\r
+        Ext.menu.DateMenu.superclass.initComponent.call(this);\r
+        <div id="event-Ext.menu.DateMenu-select"></div>/**\r
+         * @event select\r
+         * Fires when a date is selected from the {@link #picker Ext.DatePicker}\r
+         * @param {DatePicker} picker The {@link #picker Ext.DatePicker}\r
+         * @param {Date} date The selected date\r
+         */\r
+        this.relayEvents(this.picker, ['select']);\r
+        this.on('select', this.menuHide, this);\r
+        if(this.handler){\r
+            this.on('select', this.handler, this.scope || this);\r
+        }\r
+    },\r
+\r
+    menuHide : function() {\r
+        if(this.hideOnClick){\r
+            this.hide(true);\r
+        }\r
+    },\r
+\r
+    onBeforeShow : function(){\r
+        if(this.picker){\r
+            this.picker.hideMonthPicker(true);\r
+        }\r
+    },\r
+\r
+    onShow : function(){\r
+        var el = this.picker.getEl();\r
+        el.setWidth(el.getWidth()); //nasty hack for IE7 strict mode\r
+    }\r
+ });\r
+ Ext.reg('datemenu', Ext.menu.DateMenu);\r
+ </pre>    \r
+</body>\r
+</html>
\ No newline at end of file