-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.37 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.37 KB
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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>DropDownBox - How to implement search for TreeList</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" />
<link rel="stylesheet" type="text/css" href="../node_modules/devextreme-dist/css/dx.light.css" />
<link rel="stylesheet" type="text/css" href="./index.css" />
<script type="text/javascript" src="../node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="../node_modules/devextreme-dist/js/dx.all.js"></script>
<script src="../node_modules/devextreme-aspnet-data/js/dx.aspnet.data.js"></script>
<script type="module" src="./index.js"></script>
</head>
<body>
<div class="dx-viewport demo-container">
<div class="row">
<p>DropDownBox with search and embedded TreeList</p>
<div id="treeBox"></div>
</div>
<div class="options">
<div class="caption">Search Options</div>
<div class="option">
<div>Search Expression</div>
<div id="searchExprOption"></div>
</div>
<div class="option">
<div>Search Timeout</div>
<div id="searchTimeoutOption"></div>
</div>
</div>
</div>
</body>
</html>