icons.html
1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TextBox with Icons - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
<link rel="stylesheet" type="text/css" href="../demo.css">
<script type="text/javascript" src="../../jquery.min.js"></script>
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
<h2>TextBox with Icons</h2>
<p>Click the icons on textbox to perform actions.</p>
<div style="margin:20px 0 40px 0;"></div>
<div style="margin:10px 0 20px 0">
<span>Select Icon Align: </span>
<select onchange="$('#tt').textbox({iconAlign:this.value})">
<option value="right">Right</option>
<option value="left">Left</option>
</select>
</div>
<div class="easyui-panel" style="width:100%;max-width:400px;padding:30px 60px;">
<div style="margin-bottom:20px">
<input id="tt" class="easyui-textbox" style="width:100%;" data-options="
label: 'Icons:',
labelPosition: 'top',
prompt: 'Input something here!',
iconWidth: 22,
icons: [{
iconCls:'icon-add',
handler: function(e){
$(e.data.target).textbox('setValue', 'Something added!');
}
},{
iconCls:'icon-remove',
handler: function(e){
$(e.data.target).textbox('clear');
}
},{
iconCls:'icon-search',
handler: function(e){
var v = $(e.data.target).textbox('getValue');
alert('The inputed value is ' + (v ? v : 'empty'));
}
}]
">
</div>
</div>
</body>
</html>