~bcsaller/juju-gui/charmFind

« back to all changes in this revision

Viewing changes to lib/yui/docs/calendar/calendar-multipane.html

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html lang="en">
3
 
<head>
4
 
    <meta charset="utf-8">
5
 
    <title>Example: Two-Pane Calendar with Custom Rendering and Multiple Selection</title>
6
 
    <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Maven+Pro:400,700">
7
 
    <link rel="stylesheet" href="../../build/cssgrids/grids-min.css">
8
 
    <link rel="stylesheet" href="../assets/css/main.css">
9
 
    <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
10
 
    <script src="../../build/yui/yui-min.js"></script>
11
 
</head>
12
 
<body>
13
 
 
14
 
<div id="doc">
15
 
    <h1>Example: Two-Pane Calendar with Custom Rendering and Multiple Selection</h1>
16
 
 
17
 
    
18
 
 
19
 
    <div class="yui3-g">
20
 
        <div class="yui3-u-3-4">
21
 
            <div id="main">
22
 
                <div class="content"><style>
23
 
.example {
24
 
        font-size:15px;
25
 
}
26
 
 
27
 
.example h4 {
28
 
        border: none;
29
 
        text-transform: none;
30
 
}
31
 
 
32
 
.example th {
33
 
        background: none;
34
 
        color: #000;
35
 
        text-transform: none;
36
 
        border: none;
37
 
}
38
 
 
39
 
</style>
40
 
 
41
 
<div class="intro">
42
 
<p>
43
 
This example demonstrates how to instantiate a Calendar, switch its template to a double-pane, and create custom renderers for its header and certain cells (based on rules), as well as turn on multiple date selection and disable certain dates from being selected.
44
 
</p>
45
 
<p><strong>The <code>selectionMode</code> in this example is set to <code>multiple</code></strong>, which allows additional dates to be selected if a <strong>Shift</strong> or <strong>Ctrl/Meta</strong> key is held down. This selection mode does not allow multiple selection on touchscreen devices; for such devices, use the <code>multiple-sticky</code> selection mode instead.
46
 
</p>
47
 
 
48
 
<p>
49
 
<strong>There are two custom filtering rules provided in the example code.</strong> One matches all Saturdays and Sundays (weekends in the United States), and the other matches Tuesdays and Fridays. The first rule is used in conjunction with a custom renderer to set the corresponding date cell text color to red. The second rule is used to disable matching dates from selection and interaction.
50
 
</p>
51
 
</div>
52
 
 
53
 
<div class="example yui3-skin-sam">
54
 
    <style>
55
 
.yui3-skin-sam .redtext {
56
 
  color:#ff0000;
57
 
}
58
 
</style>
59
 
<div id="demo" class="yui3-skin-sam">
60
 
  <div id="mycalendar"></div>
61
 
</div>
62
 
<script type="text/javascript">
63
 
YUI().use('calendar', 'datatype-date', 'datatype-date-math', function(Y) {
64
 
 
65
 
 
66
 
 // Switch the calendar main template to the included two pane template
67
 
 Y.CalendarBase.CONTENT_TEMPLATE = Y.CalendarBase.TWO_PANE_TEMPLATE;
68
 
 
69
 
 // Create a new instance of calendar, setting the showing of previous
70
 
 // and next month's dates to true, and the selection mode to multiple
71
 
 // selected dates. Additionally, set the disabledDatesRule to a name of
72
 
 // the rule which, when matched, will force the date to be excluded
73
 
 // from being selected. Also configure the initial date on the calendar
74
 
 // to be July of 2011.
75
 
 var calendar = new Y.Calendar({
76
 
   contentBox: "#mycalendar",
77
 
   width: "700px",
78
 
   showPrevMonth: true,
79
 
   showNextMonth: true,
80
 
   selectionMode: 'multiple',
81
 
   disabledDatesRule: "tuesdays_and_fridays",
82
 
   date: new Date(2011, 6, 1)
83
 
 }).render();
84
 
 
85
 
// Create a set of rules to match specific dates. In this case,
86
 
// the "tuesdays_and_fridays" rule will match any Tuesday or Friday,
87
 
// whereas the "all_weekends" rule will match any Saturday or Sunday.
88
 
 var rules = {
89
 
   "all": {
90
 
     "all": {
91
 
       "all": {
92
 
         "2,5": "tuesdays_and_fridays",
93
 
         "0,6": "all_weekends"
94
 
       }
95
 
     }
96
 
   }
97
 
 };
98
 
 
99
 
// Set the calendar customRenderer, provides the rules defined above,
100
 
// as well as a filter function. The filter function receives a reference
101
 
// to the node corresponding to the DOM element of the date that matched
102
 
// one or more rule, along with the list of rules. Check if one of the
103
 
// rules is "all_weekends", and if so, apply a custom CSS class to the
104
 
// node.
105
 
 calendar.set("customRenderer", {
106
 
   rules: rules,
107
 
   filterFunction: function (date, node, rules) {
108
 
     if (Y.Array.indexOf(rules, 'all_weekends') >= 0) {
109
 
       node.addClass("redtext");
110
 
     }
111
 
   }
112
 
 });
113
 
 
114
 
// Set a custom header renderer with a callback function,
115
 
// which receives the current date and outputs a string.
116
 
// use the Y.Datatype.Date format to format the date, and
117
 
// the Datatype.Date math to add one month to the current
118
 
// date, so both months can appear in the header (since 
119
 
// this is a two-pane calendar).
120
 
 calendar.set("headerRenderer", function (curDate) {
121
 
   var ydate = Y.DataType.Date,
122
 
       output = ydate.format(curDate, {
123
 
       format: "%B %Y"
124
 
     }) + " &mdash; " + ydate.format(ydate.addMonths(curDate, 1), {
125
 
       format: "%B %Y"
126
 
     });
127
 
   return output;
128
 
 }); 
129
 
 
130
 
// When selection changes, output the fired event to the
131
 
// console. the newSelection attribute in the event facade
132
 
// will contain the list of currently selected dates (or be
133
 
// empty if all dates have been deselected).
134
 
 calendar.on("selectionChange", function (ev) {
135
 
   Y.log(ev);
136
 
 });
137
 
 
138
 
 });
139
 
 
140
 
</script>
141
 
 
142
 
</div>
143
 
 
144
 
<h2>Complete Example Source</h2>
145
 
 
146
 
<pre class="code prettyprint">&lt;style&gt;
147
 
.yui3-skin-sam .redtext {
148
 
  color:#ff0000;
149
 
}
150
 
&lt;&#x2F;style&gt;
151
 
&lt;div id=&quot;demo&quot; class=&quot;yui3-skin-sam&quot;&gt;
152
 
  &lt;div id=&quot;mycalendar&quot;&gt;&lt;&#x2F;div&gt;
153
 
&lt;&#x2F;div&gt;
154
 
&lt;script type=&quot;text&#x2F;javascript&quot;&gt;
155
 
YUI().use(&#x27;calendar&#x27;, &#x27;datatype-date&#x27;, &#x27;datatype-date-math&#x27;, function(Y) {
156
 
 
157
 
 
158
 
 &#x2F;&#x2F; Switch the calendar main template to the included two pane template
159
 
 Y.CalendarBase.CONTENT_TEMPLATE = Y.CalendarBase.TWO_PANE_TEMPLATE;
160
 
 
161
 
 &#x2F;&#x2F; Create a new instance of calendar, setting the showing of previous
162
 
 &#x2F;&#x2F; and next month&#x27;s dates to true, and the selection mode to multiple
163
 
 &#x2F;&#x2F; selected dates. Additionally, set the disabledDatesRule to a name of
164
 
 &#x2F;&#x2F; the rule which, when matched, will force the date to be excluded
165
 
 &#x2F;&#x2F; from being selected. Also configure the initial date on the calendar
166
 
 &#x2F;&#x2F; to be July of 2011.
167
 
 var calendar = new Y.Calendar({
168
 
   contentBox: &quot;#mycalendar&quot;,
169
 
   width: &quot;700px&quot;,
170
 
   showPrevMonth: true,
171
 
   showNextMonth: true,
172
 
   selectionMode: &#x27;multiple&#x27;,
173
 
   disabledDatesRule: &quot;tuesdays_and_fridays&quot;,
174
 
   date: new Date(2011, 6, 1)
175
 
 }).render();
176
 
 
177
 
&#x2F;&#x2F; Create a set of rules to match specific dates. In this case,
178
 
&#x2F;&#x2F; the &quot;tuesdays_and_fridays&quot; rule will match any Tuesday or Friday,
179
 
&#x2F;&#x2F; whereas the &quot;all_weekends&quot; rule will match any Saturday or Sunday.
180
 
 var rules = {
181
 
   &quot;all&quot;: {
182
 
     &quot;all&quot;: {
183
 
       &quot;all&quot;: {
184
 
         &quot;2,5&quot;: &quot;tuesdays_and_fridays&quot;,
185
 
         &quot;0,6&quot;: &quot;all_weekends&quot;
186
 
       }
187
 
     }
188
 
   }
189
 
 };
190
 
 
191
 
&#x2F;&#x2F; Set the calendar customRenderer, provides the rules defined above,
192
 
&#x2F;&#x2F; as well as a filter function. The filter function receives a reference
193
 
&#x2F;&#x2F; to the node corresponding to the DOM element of the date that matched
194
 
&#x2F;&#x2F; one or more rule, along with the list of rules. Check if one of the
195
 
&#x2F;&#x2F; rules is &quot;all_weekends&quot;, and if so, apply a custom CSS class to the
196
 
&#x2F;&#x2F; node.
197
 
 calendar.set(&quot;customRenderer&quot;, {
198
 
   rules: rules,
199
 
   filterFunction: function (date, node, rules) {
200
 
     if (Y.Array.indexOf(rules, &#x27;all_weekends&#x27;) &gt;= 0) {
201
 
       node.addClass(&quot;redtext&quot;);
202
 
     }
203
 
   }
204
 
 });
205
 
 
206
 
&#x2F;&#x2F; Set a custom header renderer with a callback function,
207
 
&#x2F;&#x2F; which receives the current date and outputs a string.
208
 
&#x2F;&#x2F; use the Y.Datatype.Date format to format the date, and
209
 
&#x2F;&#x2F; the Datatype.Date math to add one month to the current
210
 
&#x2F;&#x2F; date, so both months can appear in the header (since 
211
 
&#x2F;&#x2F; this is a two-pane calendar).
212
 
 calendar.set(&quot;headerRenderer&quot;, function (curDate) {
213
 
   var ydate = Y.DataType.Date,
214
 
       output = ydate.format(curDate, {
215
 
       format: &quot;%B %Y&quot;
216
 
     }) + &quot; &amp;mdash; &quot; + ydate.format(ydate.addMonths(curDate, 1), {
217
 
       format: &quot;%B %Y&quot;
218
 
     });
219
 
   return output;
220
 
 }); 
221
 
 
222
 
&#x2F;&#x2F; When selection changes, output the fired event to the
223
 
&#x2F;&#x2F; console. the newSelection attribute in the event facade
224
 
&#x2F;&#x2F; will contain the list of currently selected dates (or be
225
 
&#x2F;&#x2F; empty if all dates have been deselected).
226
 
 calendar.on(&quot;selectionChange&quot;, function (ev) {
227
 
   Y.log(ev);
228
 
 });
229
 
 
230
 
 });
231
 
 
232
 
&lt;&#x2F;script&gt;</pre>
233
 
 
234
 
</div>
235
 
            </div>
236
 
        </div>
237
 
 
238
 
        <div class="yui3-u-1-4">
239
 
            <div class="sidebar">
240
 
                
241
 
 
242
 
                
243
 
                    <div class="sidebox">
244
 
                        <div class="hd">
245
 
                            <h2 class="no-toc">Examples</h2>
246
 
                        </div>
247
 
 
248
 
                        <div class="bd">
249
 
                            <ul class="examples">
250
 
                                
251
 
                                    
252
 
                                        <li data-description="How to create a single-pane calendar with selectable dates">
253
 
                                            <a href="calendar-simple.html">Simple Calendar with Selection</a>
254
 
                                        </li>
255
 
                                    
256
 
                                
257
 
                                    
258
 
                                        <li data-description="How to create a multi-pane calendar with custom-rendered cells and multiple date selection.">
259
 
                                            <a href="calendar-multipane.html">Two-Pane Calendar with Custom Rendering and Multiple Selection</a>
260
 
                                        </li>
261
 
                                    
262
 
                                
263
 
                            </ul>
264
 
                        </div>
265
 
                    </div>
266
 
                
267
 
 
268
 
                
269
 
            </div>
270
 
        </div>
271
 
    </div>
272
 
</div>
273
 
 
274
 
<script src="../assets/vendor/prettify/prettify-min.js"></script>
275
 
<script>prettyPrint();</script>
276
 
 
277
 
</body>
278
 
</html>