We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76d27f8 commit 37a8fa0Copy full SHA for 37a8fa0
examples/index.html
@@ -112,6 +112,32 @@ <h3>Simple table with colspan</h3>
112
</tbody>
113
</table>
114
115
+ <h3>Simple table, headers on first column</h3>
116
+ <table wt-responsive-table>
117
+ <tbody ng-repeat="item in ctrl.projects">
118
+ <tr>
119
+ <th>Name</th>
120
+ <td>{{item.name}}</td>
121
+ </tr>
122
123
+ <th>Version</th>
124
+ <td>{{item.version}}</td>
125
126
127
+ <th>Language</th>
128
+ <td>{{item.language}}</td>
129
130
131
+ <th>Maintainer</th>
132
+ <td>{{item.maintainer}}</td>
133
134
135
+ <th>Stars</th>
136
+ <td>{{item.stars}}</td>
137
138
+ </tbody>
139
+ </table>
140
+
141
<h2>With Bootstrap</h2>
142
143
<h3>Static table</h3>
0 commit comments