comparison default/node_modules/tablesaw/demo/rowspan.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 <link rel="stylesheet" href="../dist/tablesaw.css">
10 <link rel="stylesheet" href="demo.css">
11 <link rel="stylesheet" href="//filamentgroup.github.io/demo-head/demohead.css">
12
13 <script src="../dist/tablesaw.js"></script>
14 <script src="../dist/tablesaw-init.js"></script>
15 <script src="//filamentgroup.github.io/demo-head/loadfont.js"></script>
16 </head>
17 <body>
18 <div class="demo-header">
19 <div class="company">
20 <img src="http://filamentgroup.com/images/fg-logo-positive-sm-crop.png">
21 </div>
22 <div class="details">
23 <h1 class="description-container">Demo of <span class="repo-name">Tablesaw</span>
24 <span class="description">A group of plugins for responsive tables.</span>
25 </h1>
26 <ul class="outbound-links">
27 <li><a href="https://github.com/filamentgroup/tablesaw">Code</a></li>
28 <li><a href="https://github.com/filamentgroup/tablesaw/issues">Issues</a></li>
29 </ul>
30 </div>
31 </div>
32 <div class="nav-container">
33 <div class="docs-globalnav">
34 <nav class="docs-nav">
35 <a href="kitchensink.html">Kitchen Sink</a>
36 <a href="modeswitch.html">Mode Switch</a>
37 <a href="sort.html">Sortable</a>
38 <a href="stack.html">Stack</a>
39 <a href="stackonly.html">Stack Only</a>
40 <a href="swipe.html">Swipe Table</a>
41 <a href="toggle.html" class="current">Toggle</a>
42 </nav>
43 </div>
44 </div>
45 <div class="docs-main">
46
47 <h2>Column Toggle with Rowspan Table</h2>
48 <table class="tablesaw" data-tablesaw-mode="swipe">
49 <thead>
50 <tr>
51 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="persist">Movie Title</th>
52 <th scope="col" rowspan="2" data-tablesaw-sortable-col data-tablesaw-sortable-default-col data-tablesaw-priority="3" style="border: 1px solid #000">rowspan=2</th>
53 <th scope="col" colspan="2" data-tablesaw-sortable-col data-tablesaw-priority="2" style="border: 1px solid #000">colspan=2</th>
54 </tr>
55 <tr>
56 <th scope="col" data-tablesaw-sortable-col data-tablesaw-priority="persist">Movie Title</th>
57 <th scope="col" colspan="2" data-tablesaw-sortable-col data-tablesaw-priority="2" style="border: 1px solid #000">colspan=2</th>
58 </tr>
59 </thead>
60 <tbody>
61 <tr>
62 <td class="title"><a href="http://en.wikipedia.org/wiki/Avatar_(2009_film)">Avatar</a></td>
63 <td>1</td>
64 <td>2009</td>
65 <td rowspan="2" style="border: 1px solid #000">rowspan=2</td>
66 </tr>
67 <tr>
68 <td class="title"><a href="http://en.wikipedia.org/wiki/Titanic_(1997_film)">Titanic</a></td>
69 <td>2</td>
70 <td>2009</td>
71 </tr>
72 <tr>
73 <td class="title"><a href="http://en.wikipedia.org/wiki/The_Avengers_(2012_film)">The Avengers</a></td>
74 <td>3</td>
75 <td>2012</td>
76 <td>2012</td>
77 </tr>
78 </tbody>
79 </table>
80 </div>
81
82 </body>
83 </html>