-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckListBox.html
More file actions
100 lines (99 loc) · 3.91 KB
/
Copy pathCheckListBox.html
File metadata and controls
100 lines (99 loc) · 3.91 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MindFusion JS UI Sample - CheckListBox</title>
<script type="text/javascript" src="common/samples.js"></script>
<link href="common/samples.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="themes/standard.css" />
<link rel="stylesheet" type="text/css" href="themes/light.css" />
<link rel="stylesheet" type="text/css" href="themes/business.css" />
<link rel="stylesheet" type="text/css" href="themes/green.css" />
<link rel="stylesheet" type="text/css" href="themes/blue.css" />
<link rel="stylesheet" type="text/css" href="themes/gray.css" />
<link rel="stylesheet" type="text/css" href="themes/earth.css" />
<link rel="stylesheet" type="text/css" href="themes/peach.css" />
<link rel="stylesheet" type="text/css" href="themes/pastel.css" />
<link rel="stylesheet" type="text/css" href="themes/black.css" />
<style type="text/css">
.flex-container {
display: flex;
}
.flex-item {
display: flex;
flex-direction: column;
padding: 10px;
}
</style>
</head>
<body>
<div id="header" style="height: 59px;">
<div style="float: left; margin-left: 5px;">
<a href="../index.html" style="margin-left: 10px;">Index</a> Multiple
<input type="checkbox" id="multiple" checked="checked"/>
Theme <select id="theme">
<option value="">none</option>
<option value="standard">standard</option>
<option value="light">light</option>
<option value="business">business</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="gray" selected="selected">gray</option>
<option value="peach">peach</option>
<option value="earth">earth</option>
<option value="pastel">pastel</option>
<option value="black">black</option>
</select>
</div>
<div style="float: right; margin-right: 5px;">
<a href="CheckListBox.js" style="margin-right: 10px;">View source</a>
<button id="expandButton" onclick="onExpandCollapse()">
›
</button>
</div>
</div>
<div id="info" style="top: 70px; bottom: 24px;">
<div id="infoTab" style="padding: 10px;">
<h1>
About this sample
</h1>
<p id="pinfo">
This sample shows how to use the CheckListBox control.
</p>
</div>
</div>
<div id="content" style="top: 70px; bottom: 24px;">
<div class="flex-container">
<div class="flex-item">
CheckListBoxType.List
<div id="checkbox1">
</div>
<div id="checkbox1-infotext">
</div>
</div>
<div class="flex-item">
CheckListBoxType.Flags
<div id="checkbox2">
</div>
<div id="checkbox2-infotext">
</div>
</div>
<div class="flex-item">
CheckListPicker
<div id="checkbox3">
</div>
<div id="checkbox3-infotext">
</div>
</div>
</div>
</div>
<div id="footer" style="height: 24px;">
<span id="copyright"></span>
</div>
<script src="Scripts/drawing.js" type="text/javascript"></script>
<script src="Scripts/controls.js" type="text/javascript"></script>
<script src="Scripts/common.js" type="text/javascript"></script>
<script src="Scripts/common-collections.js" type="text/javascript"></script>
<script src="Scripts/common-ui.js" type="text/javascript"></script>
<script src="CheckListBox.js" type="text/javascript"></script>
</body>
</html>