comparison default/node_modules/tablesaw/demo/toggle-btntarget.html @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d038bc9b3d2
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <title>TableSaw Column Toggle Table</title>
8
9 <style>
10 .new-toolbar {
11 border: 1px dotted green;
12 }
13 .new-toolbar:after {
14 content: "";
15 display: table;
16 clear: both;
17 }
18 </style>
19 <link rel="stylesheet" href="../dist/tablesaw.css">
20 <link rel="stylesheet" href="demo.css">
21 <link rel="stylesheet" href="//filamentgroup.github.io/demo-head/demohead.css">
22
23 <script src="../dist/tablesaw.js"></script>
24 <script src="../dist/tablesaw-init.js"></script>
25 <script src="//filamentgroup.github.io/demo-head/loadfont.js"></script>
26 </head>
27 <body>
28 <div class="demo-header">
29 <div class="company">
30 <img src="http://filamentgroup.com/images/fg-logo-positive-sm-crop.png">
31 </div>
32 <div class="details">
33 <h1 class="description-container">Demo of <span class="repo-name">Tablesaw</span>
34 <span class="description">A group of plugins for responsive tables.</span>
35 </h1>
36 <ul class="outbound-links">
37 <li><a href="https://github.com/filamentgroup/tablesaw">Code</a></li>
38 <li><a href="https://github.com/filamentgroup/tablesaw/issues">Issues</a></li>
39 </ul>
40 </div>
41 </div>
42 <div class="nav-container">
43 <div class="docs-globalnav">
44 <nav class="docs-nav">
45 <a href="kitchensink.html">Kitchen Sink</a>
46 <a href="modeswitch.html">Mode Switch</a>
47 <a href="sort.html">Sortable</a>
48 <a href="stack.html">Stack</a>
49 <a href="stackonly.html">Stack Only</a>
50 <a href="swipe.html">Swipe Table</a>
51 <a href="toggle.html" class="current">Toggle</a>
52 <a href="checkall.html">Check All</a>
53 </nav>
54 </div>
55 </div>
56 <div class="docs-main">
57
58 <h2>Column Toggle Table</h2>
59 <p>The Column Toggle Table allows the user to select which columns they want to be visible.</p>
60 <div id="btn-target-demo" class="new-toolbar">This is a separate div to test <code>data-tablesaw-columntoggle-btn-target</code>. This is a separate div to test <code>data-tablesaw-columntoggle-btn-target</code>. This is a separate div to test <code>data-tablesaw-columntoggle-btn-target</code>. This is a separate div to test <code>data-tablesaw-columntoggle-btn-target</code>. This is a separate div to test <code>data-tablesaw-columntoggle-btn-target</code>.</div>
61 <table class="tablesaw" data-tablesaw-mode="columntoggle" data-tablesaw-columntoggle-btn-target="#btn-target-demo">
62 <thead>
63 <tr>
64 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="persist">Movie Title</th>
65 <th scope="col" data-tablesaw-sortable-col data-tablesaw-sortable-default-col data-tablesaw-priority="3">Rank</th>
66 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="2">Year</th>
67 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="0" colspan="2">Gross</th>
68 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="1"><abbr title="Rotten Tomato Rating">Rating</abbr></th>
69 </tr>
70 </thead>
71 <tbody>
72 <tr>
73 <td class="title"><a href="http://en.wikipedia.org/wiki/Avatar_(2009_film)">Avatar</a></td>
74 <td>1</td>
75 <td rowspan="2">2009</td>
76 <td>$2.7B</td>
77 <td>$2.7B</td>
78 <td>83%</td>
79 </tr>
80 <tr>
81 <td class="title"><a href="http://en.wikipedia.org/wiki/Titanic_(1997_film)">Titanic</a></td>
82 <td>2</td>
83 <td>$2.1B</td>
84 <td>$2.1B</td>
85 <td>88%</td>
86 </tr>
87 <tr>
88 <td class="title"><a href="http://en.wikipedia.org/wiki/The_Avengers_(2012_film)">The Avengers</a></td>
89 <td>3</td>
90 <td>2012</td>
91 <td>$1.5B</td>
92 <td>$1.5B</td>
93 <td>92%</td>
94 </tr>
95 <tr>
96 <td class="title"><a href="http://en.wikipedia.org/wiki/Harry_Potter_and_the_Deathly_Hallows_%E2%80%93_Part_2">Harry Potter and the Deathly Hallows—Part 2</a></td>
97 <td>4</td>
98 <td>2011</td>
99 <td>$1.3B</td>
100 <td>$1.3B</td>
101 <td>96%</td>
102 </tr>
103 <tr>
104 <td class="title"><a href="http://en.wikipedia.org/wiki/Frozen_(2013_film)">Frozen</a></td>
105 <td>5</td>
106 <td>2013</td>
107 <td>$1.2B</td>
108 <td>$1.2B</td>
109 <td>89%</td>
110 </tr>
111 <tr>
112 <td class="title"><a href="http://en.wikipedia.org/wiki/Iron_Man_3">Iron Man 3</a></td>
113 <td>6</td>
114 <td>2013</td>
115 <td>$1.2B</td>
116 <td>$1.2B</td>
117 <td>78%</td>
118 </tr>
119 <tr>
120 <td class="title"><a href="http://en.wikipedia.org/wiki/Transformers:_Dark_of_the_Moon">Transformers: Dark of the Moon</a></td>
121 <td>7</td>
122 <td>2011</td>
123 <td>$1.1B</td>
124 <td>$1.1B</td>
125 <td>36%</td>
126 </tr>
127 <tr>
128 <td class="title"><a href="http://en.wikipedia.org/wiki/The_Lord_of_the_Rings:_The_Return_of_the_King">The Lord of the Rings: The Return of the King</a></td>
129 <td>8</td>
130 <td>2003</td>
131 <td>$1.1B</td>
132 <td>$1.1B</td>
133 <td>95%</td>
134 </tr>
135 <tr>
136 <td class="title"><a href="http://en.wikipedia.org/wiki/Skyfall">Skyfall</a></td>
137 <td>9</td>
138 <td>2012</td>
139 <td>$1.1B</td>
140 <td>$1.1B</td>
141 <td>92%</td>
142 </tr>
143 <tr>
144 <td class="title"><a href="http://en.wikipedia.org/wiki/Transformers:_Age_of_Extinction">Transformers: Age of Extinction</a></td>
145 <td>10</td>
146 <td>2014</td>
147 <td>$1.0B</td>
148 <td>$1.0B</td>
149 <td>18%</td>
150 </tr>
151 </tbody>
152 </table>
153 </div>
154
155 </body>
156 </html>