forked from Beau-zihan/EasyUI1.3Doc-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
2015 lines (1872 loc) · 59 KB
/
form.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>jQuery EasyUI 1.3 中文文档--表单[form]</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="网上关于jQuery EasyUI最新版的中文文档比较少,特花了一些时间制作了这篇中文文档,贡献出来,希望对想学习和正在用的同学有帮助!">
<meta name="keywords" content="jQuery EasyUI 1.3中文文档,jQuery EasyUI 1.3中文api,jQuery EasyUI 1.3在线文档,easyui form">
<meta name="author" content="http://www.zi-han.net">
<!-- Le styles -->
<link href="docs/assets/css/bootstrap.css" rel="stylesheet">
<link href="docs/assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="docs/assets/css/docs.css" rel="stylesheet">
<link href="docs/assets/js/google-code-prettify/prettify.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>var _hmt = _hmt||[];(function(){var hm=document.createElement("script");hm.src ="//hm.baidu.com/hm.js?8867273989ac579c211d99bc3e0d00dd";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm,s);})();</script>
</head>
<body data-spy="scroll" data-target=".bs-docs-sidebar">
<!-- Navbar
================================================== -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="http://www.zi-han.net">作者博客</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="">
<a href="index.html">首页</a>
</li>
<li class="">
<a href="base.html" rel="tooltip" data-placement="bottom" data-original-title="Base">基本</a>
</li>
<li class="">
<a href="layout.html" rel="tooltip" data-placement="bottom"
data-original-title="Layout">布局管理器</a>
</li>
<li class="">
<a href="menu&button.html" rel="tooltip" data-placement="bottom"
data-original-title="Menu and Button">菜单和按钮</a>
</li>
<li class="active">
<a href="form.html" rel="tooltip" data-placement="bottom" data-original-title="Form">表单</a>
</li>
<li class="">
<a href="window.html" rel="tooltip" data-placement="bottom" data-original-title="Window">窗口</a>
</li>
<li class="">
<a href="datagrid&tree.html" rel="tooltip" data-placement="bottom"
data-original-title="DataGrid and Tree">数据表格和树形菜单</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Subhead
================================================== -->
<header class="jumbotron subhead" id="overview">
<div class="container">
<h1>菜单和按钮(Menu and Button)</h1>
</div>
</header>
<div class="container">
<!-- Docs nav
================================================== -->
<div class="row">
<div class="span3 bs-docs-sidebar">
<ul class="nav nav-list bs-docs-sidenav">
<li><a href="#form"><i class="icon-chevron-right"></i>表单</a></li>
<li><a href="#validatebox"><i class="icon-chevron-right"></i>表单验证</a></li>
<li><a href="#combo"><i class="icon-chevron-right"></i>自定义组合框</a></li>
<li><a href="#combobox"><i class="icon-chevron-right"></i>可装载组合框</a></li>
<li><a href="#combotree"><i class="icon-chevron-right"></i>组合树</a></li>
<li><a href="#combogrid"><i class="icon-chevron-right"></i>组合表格</a></li>
<li><a href="#numberbox"><i class="icon-chevron-right"></i>数字验证框</a></li>
<li><a href="#datebox"><i class="icon-chevron-right"></i>日期组合框</a></li>
<li><a href="#datetimebox"><i class="icon-chevron-right"></i>日期时间组合框</a></li>
<li><a href="#calendar"><i class="icon-chevron-right"></i>日历</a></li>
<li><a href="#spinner"><i class="icon-chevron-right"></i>调节器</a></li>
<li><a href="#numberspinner"><i class="icon-chevron-right"></i>数字调节器</a></li>
<li><a href="#timespinner"><i class="icon-chevron-right"></i>时间调节器</a></li>
</ul>
</div>
<div class="span9">
<!-- Button Groups
================================================== -->
<section id="form">
<div class="page-header">
<h1>表单[Form]</h1>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/form.html" class="autoheight" width="100%" frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<form id="ff" method="post">
...
</form>
</pre>
</p>
<h5>使用ajax方式提交表单</h5>
<p><pre class="prettyprint linenums">
$('#ff').form({
url:...,
onSubmit: function(){
//进行表单验证
//如果返回false阻止提交
},
success:function(data){
alert(data)
}
});
//提交表单
$('#ff').submit();
</pre>
</p>
<p>普通方式提交</p>
<p><pre class="prettyprint linenums">
//调用表单插件的'submit'方法提交
$('#ff').form('submit', {
url:...,
onSubmit: function(){
//进行表单验证
//如果返回false阻止提交
},
success:function(data){
alert(data)
}
});
</pre>
</p>
<h4>属性:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>描述</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>url(目标网址)</td>
<td>string(字符串)</td>
<td>表单提交的目标网址</td>
<td>null</td>
</tr>
</tbody>
</table>
<h4>事件:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>onSubmit</td>
<td>none</td>
<td>在表单提交之前触发,返回false将阻止表单提交。</td>
</tr>
<tr>
<td>success</td>
<td>data</td>
<td>当表单成功提交时触发。</td>
</tr>
<tr>
<td>onBeforeLoad</td>
<td>param</td>
<td>在发送载入远程数据请求之前触发,返回false将取消请求。</td>
</tr>
<tr>
<td>onLoadSuccess</td>
<td>data</td>
<td>在表单数据被载入时触发。</td>
</tr>
<tr>
<td>onLoadError</td>
<td>none</td>
<td>在载入表单数据发生错误时触发。</td>
</tr>
</tbody>
</table>
<h4>方法:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>submit</td>
<td>options</td>
<td>执行表单提交,options参数是一个包含以下属性的对象:<br>
url:表单提交的目标网址<br>
onSubmit:在表单提交之前执行的回调函数<br>
success: 在表单成功提交后执行的回调函数<br></td>
</tr>
<tr>
<td>load</td>
<td>data</td>
<td>载入记录填充表单。<br>
data参数可以是字符串或者对象类型,当传入字符串时,data参数必须是一个远程url地址,否则用户必须自定义要载入的数据
</td>
</tr>
<tr>
<td>clear</td>
<td>none</td>
<td>清除表单数据</td>
</tr>
<tr>
<td>validate</td>
<td>none</td>
<td>执行表单域验证,如果全部表单域有效返回true,该方法与表单验证插件一起使用。</td>
</tr>
</tbody>
</table>
</section>
<section id="validatebox">
<div class="page-header">
<h1>表单验证[validatebox]</h1>
<p>使用$.fn.validatebox.defaults重载默认值。</p>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/validatebox.html" class="autoheight" width="100%"
frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<input id="vv" required="true" validType="email">
</pre>
</p>
<p><pre class="prettyprint linenums">
$('#vv').validatebox({
required:true
});
</pre>
</p>
<h4>验证规则</h4>
<p>验证规则使用required和validType属性来定义, 以下列出的是插件内置的验证规则。</p>
<ul>
<li>email: 正则匹配电子邮件。</li>
<li>url: 正则匹配url。</li>
<li>length[0,100]: 验证长度范围。</li>
<li>remote['http://.../action.do','paramName']: 发送ajax请求来验证,验证有效时返回true。</li>
</ul>
<p>要自定义规则,重载$.fn.validatebox.defaults。你所定义的验证规则必须定义一个验证函数和验证无效时的提示信息。 例如,定义一个验证最小长度的规则:</p>
<p><pre class="prettyprint linenums">
$.extend($.fn.validatebox.defaults.rules, {
minLength: {
validator: function(value, param){
return value.length >= param[0];
},
message: 'Please enter at least {0} characters.'
}
});
</pre>
</p>
<p>现在你可以使用最小长度验证规则来定义一个至少要输入5个字符的输入框。</p>
<p><pre class="prettyprint linenums">
<input class="easyui-validatebox" validType="minLength[5]">
</pre>
</p>
<h4>属性:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>描述</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>required(必填)</td>
<td>boolean(布尔型)</td>
<td>定义表单域必须填写。</td>
<td>false</td>
</tr>
<tr>
<td>validType(验证类型)</td>
<td>string(字符串)</td>
<td>定义表单域的验证类型,比如:email, url等。</td>
<td>null</td>
</tr>
<tr>
<td>missingMessage(未填提示)</td>
<td>string(字符串)</td>
<td>当表单域未填写时出现的提示信息。</td>
<td>This field is required.</td>
</tr>
<tr>
<td>invalidMessage(无效提示)</td>
<td>string(字符串)</td>
<td>当表单域的内容被验证为无效时出现的提示。</td>
<td>null</td>
</tr>
</tbody>
</table>
<h4>方法:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>destroy</td>
<td>none</td>
<td>移除并注销组件。</td>
</tr>
<tr>
<td>validate</td>
<td>none</td>
<td>验证表单域的内容是否有效。</td>
</tr>
<tr>
<td>isValid</td>
<td>none</td>
<td>调用validate方法并且返回验证结果,true或者false。</td>
</tr>
</tbody>
</table>
</section>
<section id="combo">
<div class="page-header">
<h1>自定义组合框[combo]</h1>
<p>继承$.fn.validatebox.defaults,使$.fn.combo.defaults重载。</p>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/combo.html" class="autoheight" width="100%" frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>依赖关系:</h4>
<ul>
<li><a href="#validatebox">表单验证</a></li>
<li><a href="layout.html#panel">控制面板</a></li>
</ul>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<input id="cc" value="001">
<select id="cc"></select >
</pre>
</p>
<p><pre class="prettyprint linenums">
$('#cc').combo({
required:true,
multiple:true
}); </pre>
</p>
<h4>属性:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>描述</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>width(宽度)</td>
<td>number(数字)</td>
<td>组合框的宽度。</td>
<td>auto</td>
</tr>
<tr>
<td>panelWidth(下拉框宽度)</td>
<td>number(数字)</td>
<td>下拉框的宽度。</td>
<td>null</td>
</tr>
<tr>
<td>panelHeight(下拉框高度)</td>
<td>number(数字)</td>
<td>下拉框的高度。</td>
<td>200</td>
</tr>
<tr>
<td>multiple(可多选)</td>
<td>boolean(布尔型)</td>
<td>定义是否支持多选。</td>
<td>false</td>
</tr>
<tr>
<td>separator(分隔条)</td>
<td>string(字符串)</td>
<td>当支持多选时,用以分隔文本的字符。</td>
<td>,</td>
</tr>
<tr>
<td>editable(可编辑)</td>
<td>boolean(布尔型)</td>
<td>定义用户是否可以直接向组合框输入内容。</td>
<td>true</td>
</tr>
<tr>
<td>disabled(禁用)</td>
<td>boolean(布尔型)</td>
<td>定义是否禁用输入框。</td>
<td>false</td>
</tr>
<tr>
<td>hasDownArrow(下拉图标)</td>
<td>boolean(布尔型)</td>
<td>定义是否显示下拉按钮。</td>
<td>true</td>
</tr>
<tr>
<td>value(值)</td>
<td>string(字符串)</td>
<td>默认值。</td>
<td></td>
</tr>
<tr>
<td>delay(延迟)</td>
<td>number(数字)</td>
<td>最后一次输入事件与搜索(自动完成)之间的延迟间隔。</td>
<td>200</td>
</tr>
<tr>
<td>keyHandler(按键助手)</td>
<td>object(对象)</td>
<td>
当用户按下一个键位时调用的函数,默认的按键助手定义如下:
<pre class="prettyprint linenums">
keyHandler: {
up: function(){},
down: function(){},
enter: function(){},
query: function(q){}
}
</pre>
</td>
<td></td>
</tr>
</tbody>
</table>
<h4>事件:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>onShowPanel</td>
<td>none</td>
<td>当显示下拉面板的时候触发。</td>
</tr>
<tr>
<td>onHidePanel</td>
<td>none</td>
<td>当隐藏下拉面板的时候触发。</td>
</tr>
<tr>
<td>onChange</td>
<td>newValue, oldValue</td>
<td>当组合框的值发生改变时触发。</td>
</tr>
</tbody>
</table>
<h4>方法:</h4>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>options</td>
<td>none</td>
<td>返回属性对象。</td>
</tr>
<tr>
<td>panel</td>
<td>none</td>
<td>返回下拉面板对象。</td>
</tr>
<tr>
<td>textbox</td>
<td>none</td>
<td>返回文本框对象。</td>
</tr>
<tr>
<td>destroy</td>
<td>none</td>
<td>销毁组件。</td>
</tr>
<tr>
<td>resize</td>
<td>width</td>
<td>调整组件的宽度。</td>
</tr>
<tr>
<td>showPanel</td>
<td>none</td>
<td>显示下拉面板。</td>
</tr>
<tr>
<td>hidePanel</td>
<td>none</td>
<td>隐藏下拉面板。</td>
</tr>
<tr>
<td>disable</td>
<td>none</td>
<td>禁用组合框。</td>
</tr>
<tr>
<td>enable</td>
<td>none</td>
<td>启用组合框。</td>
</tr>
<tr>
<td>validate</td>
<td>none</td>
<td>验证输入的值。</td>
</tr>
<tr>
<td>isValid</td>
<td>none</td>
<td>返回验证结果。</td>
</tr>
<tr>
<td>clear</td>
<td>none</td>
<td>清除组件的值。</td>
</tr>
<tr>
<td>getText</td>
<td>none</td>
<td>获取组合框的值。</td>
</tr>
<tr>
<td>setText</td>
<td>text</td>
<td>设置组合框的值。</td>
</tr>
<tr>
<td>getValues</td>
<td>none</td>
<td>返回一个存储下拉面板值的数组。</td>
</tr>
<tr>
<td>setValues</td>
<td>values</td>
<td>设置下拉面板的值,参数values是一个数组。</td>
</tr>
<tr>
<td>getValue</td>
<td>none</td>
<td>获取下拉面板的值。</td>
</tr>
<tr>
<td>setValue</td>
<td>value</td>
<td>设置下拉面板的值。</td>
</tr>
</tbody>
</table>
</section>
<section id="combobox">
<div class="page-header">
<h1>自定义组合框[combobox]</h1>
<p>继承$.fn.combo.defaults,使用$.fn.combobox.defaults重载默认值。</p>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/combobox.html" class="autoheight" width="100%" frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>依赖关系:</h4>
<ul>
<li><a href="#combo"></a>自定义组合框</li>
</ul>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<select id="cc" name="dept" style="width:200px;">
<option value="aa">aitem1</option>
<option>bitem2</option>
<option>bitem3</option>
<option>ditem4</option>
<option>eitem5</option>
</select>
</pre>
</p>
<p><pre class="prettyprint linenums">
<input id="cc" name="dept" value="aa"> </pre>
</p>
<p><pre class="prettyprint linenums">
$('#cc').combobox({
url:'combobox_data.json',
valueField:'id',
textField:'text'
}); </pre>
</p>
<p>json数据转换示例:</p>
<p><pre class="prettyprint linenums">
[{
"id":1,
"text":"text1"
},{
"id":2,
"text":"text2"
},{
"id":3,
"text":"text3",
"selected":true
},{
"id":4,
"text":"text4"
},{
"id":5,
"text":"text5"
}] </pre>
</p>
<h4>属性:</h4>
<p>继承自定义组合框的属性, 以下是可装载组合框的独有属性。</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>描述</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>valueField(值域)</td>
<td>string(字符串)</td>
<td>绑定到组合框下的数据的值域的名称。</td>
<td>value</td>
</tr>
<tr>
<td>textField(文本域)</td>
<td>string(字符串)</td>
<td>绑定到组合框下数据的文本域的名称。</td>
<td>text</td>
</tr>
<tr>
<td>mode(模式)</td>
<td>string(字符串)</td>
<td>定义当文本发生改变时,如何载入数据列表。如果组合框要从远程地址载入数据,设置为'remote'。</td>
<td>local</td>
</tr>
<tr>
<td>url(超链接地址)</td>
<td>string(字符串)</td>
<td>可供载入数据列表的远程地址。</td>
<td>null</td>
</tr>
<tr>
<td>method(方法)</td>
<td>string(字符串)</td>
<td>获取数据的HTTP方法。</td>
<td>post</td>
</tr>
<tr>
<td>data(数据)</td>
<td>array(数组)</td>
<td>将被载入的数据列表。</td>
<td>null</td>
</tr>
<tr>
<td>filter(过滤器)</td>
<td>function(函数)</td>
<td>定义当模式设置为'local'时如何过滤本地数据,function有2个参数:<br>
q: 用户输入的文本。<br>
row: 数据列表<br>
返回true将允许显示数据列表。
</td>
<td></td>
</tr>
<tr>
<td>formatter(格式)</td>
<td>function(函数)</td>
<td>定义如何返回数据,function有一个参数:row。</td>
<td></td>
</tr>
</tbody>
</table>
<h4>事件:</h4>
<p>事件继承自定义组合框,以下是可装载组合框的独有事件。</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>onLoadSuccess</td>
<td>none</td>
<td>当远程数据载入成功时触发。</td>
</tr>
<tr>
<td>onLoadError</td>
<td>none</td>
<td>当远程数据载入错误时触发。</td>
</tr>
<tr>
<td>onSelect</td>
<td>record</td>
<td>当用户选择一个列表项时触发。</td>
</tr>
<tr>
<td>onUnselect</td>
<td>record</td>
<td>当用户取消选择一个列表项时触发。</td>
</tr>
</tbody>
</table>
<h4>方法:</h4>
<p>方法继承自定义组合框,以下是可装载组合框独有的或者重载自定义组合框的方法。</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>options</td>
<td>none</td>
<td>返回属性对象。</td>
</tr>
<tr>
<td>getData</td>
<td>none</td>
<td>返回已载入的数据。</td>
</tr>
<tr>
<td>loadData</td>
<td>data</td>
<td>载入本地数据列表。</td>
</tr>
<tr>
<td>reload</td>
<td>url</td>
<td>请求远程数据列表。</td>
</tr>
<tr>
<td>setValues</td>
<td>values</td>
<td>设置组合框的值,参数values是一个数组。</td>
</tr>
<tr>
<td>setValue</td>
<td>value</td>
<td>设置组合框的值。</td>
</tr>
<tr>
<td>clear</td>
<td>none</td>
<td>清除组合框的值。</td>
</tr>
<tr>
<td>select</td>
<td>value</td>
<td>选择特定的项目。</td>
</tr>
<tr>
<td>unselect</td>
<td>value</td>
<td>取消选择特定的项目。</td>
</tr>
</tbody>
</table>
</section>
<section id="combotree">
<div class="page-header">
<h1>组合树[combotree]</h1>
<p>继承$.fn.combo.defaults和$.fn.tree.defaults,使用$.fn.combotree.defaults重载默认值。</p>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/combotree.html" class="autoheight" width="100%" frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>依赖关系:</h4>
<ul>
<li><a href="#combo">自定义组合框</a></li>
<li><a href="datagrid&tree.html#tree">树形菜单</a></li>
</ul>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<select id="cc" style="width:200px;"></select>
</pre>
</p>
<p><pre class="prettyprint linenums">
<input id="cc" value="01"> </pre>
</p>
<p><pre class="prettyprint linenums">
$('#cc').combotree({
url:'tree_data.json'
}); </pre>
</p>
<h4>属性:</h4>
<p>属性继承自定义组合框和树形菜单,以下是组合树重载的属性。</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>描述</th>
<th>默认值</th>
</tr>
</thead>
<tbody>
<tr>
<td>editable(可编辑)</td>
<td>boolean(布尔型)</td>
<td>定义用户是否可以直接输入。</td>
<td>false</td>
</tr>
</tbody>
</table>
<h4>事件:</h4>
<p>事件继承自定义组合框和树形菜单</p>
<h4>方法:</h4>
<p>方法继承自定义组合框,以下是组合树独有的或者重载自定义组合框的方法。</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>名称</th>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>options</td>
<td>none</td>
<td>返回属性对象。</td>
</tr>
<tr>
<td>tree</td>
<td>none</td>
<td>返回树形菜单对象。</td>
</tr>
<tr>
<td>loadData</td>
<td>data</td>
<td>载入本地树形菜单数据。</td>
</tr>
<tr>
<td>reload</td>
<td>url</td>
<td>再次向远程树形菜单数据发起请求。</td>
</tr>
<tr>
<td>clear</td>
<td>none</td>
<td>清除组件值。</td>
</tr>
<tr>
<td>setValues</td>
<td>values</td>
<td>设置组合框的值,参数values是一个数组。</td>
</tr>
<tr>
<td>setValue</td>
<td>value</td>
<td>设置组合框的值。</td>
</tr>
</tbody>
</table>
</section>
<section id="combogrid">
<div class="page-header">
<h1>组合表格[combogrid]</h1>
<p>继承$.fn.combo.defaults和$.fn.datagrid.defaults,使用$.fn.combogrid.defaults重载默认值。</p>
</div>
<div class="bs-docs-example">
<iframe src="jquery-easyui-1.3.1/demo/combogrid.html" class="autoheight" width="100%" frameborder="0"></iframe>
</div>
<div class="viewbtnbox">
<button type="button" class="btn btn-warning viewsource" data-toggle="modal" data-target="#viewSource"><i
class="icon-search icon-white"></i> 查看源代码
</button>
</div>
<h4>依赖关系:</h4>
<ul>
<li><a href="#combo">自定义组合框</a></li>
<li><a href="datagrid&tree.html#datagrid">数据表格</a></li>
</ul>
<h4>使用方法:</h4>
<p><pre class="prettyprint linenums">
<select id="cc" name="dept" style="width:250px;"></select>
</pre>
</p>
<p><pre class="prettyprint linenums">
<input id="cc" name="dept" value="01"> </pre>