source: Dev/branches/rest-dojo-ui/client/dijit/layout/templates/ScrollingTabController.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.3 KB
Line 
1<div class="dijitTabListContainer-${tabPosition}" style="visibility:hidden">
2        <div data-dojo-type="dijit.layout._ScrollingTabControllerMenuButton"
3                        class="tabStripButton-${tabPosition}"
4                        id="${id}_menuBtn"
5                        data-dojo-props="containerId: '${containerId}', iconClass: 'dijitTabStripMenuIcon',
6                                        dropDownPosition: ['below-alt', 'above-alt']"
7                        data-dojo-attach-point="_menuBtn" showLabel="false" title="">&#9660;</div>
8        <div data-dojo-type="dijit.layout._ScrollingTabControllerButton"
9                        class="tabStripButton-${tabPosition}"
10                        id="${id}_leftBtn"
11                        data-dojo-props="iconClass:'dijitTabStripSlideLeftIcon', showLabel:false, title:''"
12                        data-dojo-attach-point="_leftBtn" data-dojo-attach-event="onClick: doSlideLeft">&#9664;</div>
13        <div data-dojo-type="dijit.layout._ScrollingTabControllerButton"
14                        class="tabStripButton-${tabPosition}"
15                        id="${id}_rightBtn"
16                        data-dojo-props="iconClass:'dijitTabStripSlideRightIcon', showLabel:false, title:''"
17                        data-dojo-attach-point="_rightBtn" data-dojo-attach-event="onClick: doSlideRight">&#9654;</div>
18        <div class='dijitTabListWrapper' data-dojo-attach-point='tablistWrapper'>
19                <div role='tablist' data-dojo-attach-event='onkeypress:onkeypress'
20                                data-dojo-attach-point='containerNode' class='nowrapTabStrip'></div>
21        </div>
22</div>
Note: See TracBrowser for help on using the repository browser.