summaryrefslogtreecommitdiff
path: root/lib/dijit/templates/Calendar.html
blob: a3428f5c7edfed6475da8520b9a1d175a957076a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<table cellspacing="0" cellpadding="0" class="dijitCalendarContainer" role="grid" aria-labelledby="${id}_mddb ${id}_year">
	<thead>
		<tr class="dijitReset dijitCalendarMonthContainer" valign="top">
			<th class='dijitReset dijitCalendarArrow' data-dojo-attach-point="decrementMonth">
				<img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarDecrease" role="presentation"/>
				<span data-dojo-attach-point="decreaseArrowNode" class="dijitA11ySideArrow">-</span>
			</th>
			<th class='dijitReset' colspan="5">
				<div data-dojo-attach-point="monthNode">
				</div>
			</th>
			<th class='dijitReset dijitCalendarArrow' data-dojo-attach-point="incrementMonth">
				<img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarIncrease" role="presentation"/>
				<span data-dojo-attach-point="increaseArrowNode" class="dijitA11ySideArrow">+</span>
			</th>
		</tr>
		<tr>
			${!dayCellsHtml}
		</tr>
	</thead>
	<tbody data-dojo-attach-point="dateRowsNode" data-dojo-attach-event="onclick: _onDayClick" class="dijitReset dijitCalendarBodyContainer">
			${!dateRowsHtml}
	</tbody>
	<tfoot class="dijitReset dijitCalendarYearContainer">
		<tr>
			<td class='dijitReset' valign="top" colspan="7" role="presentation">
				<div class="dijitCalendarYearLabel">
					<span data-dojo-attach-point="previousYearLabelNode" class="dijitInline dijitCalendarPreviousYear" role="button"></span>
					<span data-dojo-attach-point="currentYearLabelNode" class="dijitInline dijitCalendarSelectedYear" role="button" id="${id}_year"></span>
					<span data-dojo-attach-point="nextYearLabelNode" class="dijitInline dijitCalendarNextYear" role="button"></span>
				</div>
			</td>
		</tr>
	</tfoot>
</table>