source: Dev/trunk/src/client/dojox/widget/MultiSelectCalendar/MultiSelectCalendar.html @ 536

Last change on this file since 536 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 2.0 KB
Line 
1<table cellspacing="0" cellpadding="0" class="dijitCalendarContainer" role="grid" dojoAttachEvent="onkeydown: _onKeyDown" aria-labelledby="${id}_year">
2        <thead>
3                <tr class="dijitReset dijitCalendarMonthContainer" valign="top">
4                        <th class='dijitReset dijitCalendarArrow' dojoAttachPoint="decrementMonth">
5                                <img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarDecrease" role="presentation"/>
6                                <span dojoAttachPoint="decreaseArrowNode" class="dijitA11ySideArrow">-</span>
7                        </th>
8                        <th class='dijitReset' colspan="5">
9                                <div dojoType="dijit.form.DropDownButton" dojoAttachPoint="monthDropDownButton"
10                                        id="${id}_mddb" tabIndex="-1">
11                                </div>
12                        </th>
13                        <th class='dijitReset dijitCalendarArrow' dojoAttachPoint="incrementMonth">
14                                <img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarIncrease" role="presentation"/>
15                                <span dojoAttachPoint="increaseArrowNode" class="dijitA11ySideArrow">+</span>
16                        </th>
17                </tr>
18                <tr>
19                        <th class="dijitReset dijitCalendarDayLabelTemplate" role="columnheader"><span class="dijitCalendarDayLabel"></span></th>
20                </tr>
21        </thead>
22        <tbody dojoAttachEvent="onclick: _onDayClick, onmouseover: _onDayMouseOver, onmouseout: _onDayMouseOut, onmousedown: _onDayMouseDown, onmouseup: _onDayMouseUp" class="dijitReset dijitCalendarBodyContainer">
23                <tr class="dijitReset dijitCalendarWeekTemplate" role="row">
24                        <td class="dijitReset dijitCalendarDateTemplate" role="gridcell"><span class="dijitCalendarDateLabel"></span></td>
25                </tr>
26        </tbody>
27        <tfoot class="dijitReset dijitCalendarYearContainer">
28                <tr>
29                        <td class='dijitReset' valign="top" colspan="7">
30                                <h3 class="dijitCalendarYearLabel">
31                                        <span dojoAttachPoint="previousYearLabelNode" class="dijitInline dijitCalendarPreviousYear"></span>
32                                        <span dojoAttachPoint="currentYearLabelNode" class="dijitInline dijitCalendarSelectedYear" id="${id}_year"></span>
33                                        <span dojoAttachPoint="nextYearLabelNode" class="dijitInline dijitCalendarNextYear"></span>
34                                </h3>
35                        </td>
36                </tr>
37        </tfoot>
38</table>
Note: See TracBrowser for help on using the repository browser.