chrome-devtools-frontend
Version:
Chrome DevTools UI
36 lines (31 loc) • 797 B
HTML
<!--
Copyright 2020 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Hiding columns Data grid example</title>
<style>
#container {
width: 942px;
border: 1px solid black;
padding: 20px;
}
button {
font-size: 18px;
padding: 10px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="container">
<button class="value-visibility-toggle">Toggle visibility of 'Value' column</button>
</div>
<script type="module" src="./hide-cols.js"></script>
</body>
</html>