Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / examples / docs / source / WeekView.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.3.1
11  * Copyright(c) 2006-2010 Sencha Inc.
12  * licensing@sencha.com
13  * http://www.sencha.com/license
14  */
15 <div id="cls-Ext.calendar.WeekView"></div>/**
16  * @class Ext.calendar.WeekView
17  * @extends Ext.calendar.DayView
18  * <p>Displays a calendar view by week. This class does not usually need ot be used directly as you can
19  * use a {@link Ext.calendar.CalendarPanel CalendarPanel} to manage multiple calendar views at once including
20  * the week view.</p>
21  * @constructor
22  * @param {Object} config The config object
23  */
24 Ext.calendar.WeekView = Ext.extend(Ext.calendar.DayView, {
25     <div id="cfg-Ext.calendar.WeekView-dayCount"></div>/**
26      * @cfg {Number} dayCount
27      * The number of days to display in the view (defaults to 7)
28      */
29     dayCount: 7
30 });
31
32 Ext.reg('weekview', Ext.calendar.WeekView);</pre>    
33 </body>
34 </html>