13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Ext JS - Side Tabs</title>
    <!-- Ext includes -->
    <script type="text/javascript" src="../../examples/shared/include-ext.js"></script>
    <script type="text/javascript" src="../../examples/shared/options-toolbar.js"></script>
 
    <!-- Shared example includes -->
    <link rel="stylesheet" type="text/css" href="../shared/example.css" />
    <script type="text/javascript" src="../shared/examples.js"></script>
 
    <!-- Example includes -->
    <link rel="stylesheet" type="text/css" href="side-tabs.css" />
 
    <!-- GC -->
 
    <script type="text/javascript" src="side-tabs.js"></script>
 
</head>
<body>
    <h1>Side Tabs</h1>
    <p>Note that the JS and CSS are not minified so they are readable. See <a href="side-tabs.js">side-tabs.js</a> for the tab creation code.</p>
 
    <p>
        This example demonstrates side-aligned tabs in Ext JS.  Tab Panels can be configured
        with a tabPosition of "right" to rotate the tab bar clockwise, or "left" to rotate
        the tab bar counter-clockwise.
    </p>
 
    <div id="left-tabs" class="tab-cont">
        <h2>Left-Aligned Tabs</h2>
    </div>
    
    <div id="right-tabs" class="tab-cont">
        <h2>Right-Aligned Tabs</h2>
    </div>
    <div class="x-clear"></div>
    <div id="left-scroll-tabs" class="tab-cont">
        <h2>Left-Aligned Tabs With Scrolling</h2> 
    </div>
    <div id="right-scroll-tabs" class="tab-cont">
        <h2>Right-Aligned Tabs With Scrolling</h2>
    </div>
 
</body>
</html>