forked from nene/filter-row
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Ext.ux.grid.FilterRow example</title>
<link rel="stylesheet" type="text/css" href="http://www.extjs.com/deploy/dev/resources/css/ext-all.css"/>
<script type="text/javascript" src="http://www.extjs.com/deploy/dev/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="http://www.extjs.com/deploy/dev/ext-all.js"></script>
<link rel="stylesheet" type="text/css" href="FilterRow.css"/>
<script type="text/javascript" src="FilterRow.js"></script>
<script type="text/javascript" src="local-example.js"></script>
<script type="text/javascript" src="remote-example.js"></script>
</head>
<body style="padding: 2em">
<div id="local-grid-container"></div>
<br />
<button id="button">Rename column header</button><br />
<br />
<div id="remote-grid-container"></div>
<br />
<p>See the source of <a href="local-example.js">first grid</a>,
<a href="remote-example.js">second grid</a>, or the
<a href="FilterRow.js">FilterRow</a> plugin itself.</p>
</body>
</html>