metro4
Version:
The front-end framework for Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style
55 lines (48 loc) • 1.56 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="../metro/css/metro-all.css?ver=@@b-version" rel="stylesheet">
<title>Test Table - Metro 4 :: Popular HTML, CSS and JS library</title>
</head>
<body class="m4-cloak">
<div class="container">
<h1>Table test page</h1>
<div class="example">
<table class="table striped"
data-role="table"
data-rows="10"
data-rows-steps="5, 10, 20"
data-show-activity="true"
data-source="../data/table-100k.json"
data-show-skip="true"
data-pagination-wrapper="#pagination"
data-skip-wrapper="#skip"
data-check="true"
data-locale="uk-UA"
data-show-inspector-button="true"
data-horizontal-scroll="true"
data-horizontal-scroll-stop="xxl"
data-cell-wrapper="true"
>
<thead id="head1"></thead>
<tbody id="body1"></tbody>
</table>
<div class="row">
<div class="cell-md-8">
<div id="pagination"></div>
</div>
<div class="cell-md-4">
<div id="skip" class="d-flex"></div>
</div>
</div>
</div>
</div>
<script src="../metro/js/metro.js?ver=@@b-version"></script>
<script>
$(function(){
})
</script>
</body>
</html>