source: Dev/branches/rest-dojo-ui/client/dojox/widget/Pager/Pager.html @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1.0 KB
Line 
1<div dojoAttachPoint="pagerContainer" tabIndex="0" dojoAttachEvent="onkeypress: _handleKey, onfocus: _a11yStyle, onblur:_a11yStyle" class="${orientation}PagerContainer">
2    <div class="pagerContainer">
3                <div dojoAttachPoint="pagerContainerStatus" class="${orientation}PagerStatus"></div>
4                <div dojoAttachPoint="pagerContainerView" class="${orientation}PagerView">
5                    <div dojoAttachPoint="pagerItemContainer"><ul dojoAttachPoint="pagerItems" class="pagerItems"></ul></div>
6                </div>
7                <div dojoAttachPoint="pagerContainerPager" class="${orientation}PagerPager">
8                        <div tabIndex="0" dojoAttachPoint="pagerNext" class="pagerIconContainer" dojoAttachEvent="onclick: _pagerNext"><img dojoAttachPoint="pagerIconNext" src="${iconNext}" alt="Next" /></div>
9                        <div tabIndex="0" dojoAttachPoint="pagerPrevious" class="pagerIconContainer" dojoAttachEvent="onclick: _pagerPrevious"><img dojoAttachPoint="pagerIconPrevious" src="${iconPrevious}" alt="Previous" /></div>
10                </div>
11    </div>
12        <div dojoAttachPoint="containerNode" style="display:none"></div>
13</div>
Note: See TracBrowser for help on using the repository browser.