├── .gitattributes ├── .gitignore ├── README.md ├── air └── EasyUI1.3中文文档.air ├── base.html ├── datagrid&tree.html ├── docs ├── assets │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ └── docs.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── README.md │ │ ├── application.js │ │ ├── bootstrap-affix.js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-button.js │ │ ├── bootstrap-carousel.js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap-transition.js │ │ ├── bootstrap-typeahead.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── google-code-prettify │ │ ├── prettify.css │ │ └── prettify.js │ │ └── jquery.js └── docs.js ├── form.html ├── index.html ├── jquery-easyui-1.3.1 ├── changelog.txt ├── demo │ ├── accordion.html │ ├── calendar.html │ ├── combo.html │ ├── combobox.html │ ├── combobox_data.json │ ├── combogrid.html │ ├── combotree.html │ ├── datagrid.html │ ├── datagrid2.html │ ├── datagrid3.html │ ├── datagrid4.html │ ├── datagrid5.html │ ├── datagrid_data.json │ ├── datagrid_data2.json │ ├── datagrid_data3.json │ ├── datebox.html │ ├── datetimebox.html │ ├── demo.css │ ├── dialog.html │ ├── draggable.html │ ├── droppable.html │ ├── droppable1.html │ ├── droppable2.html │ ├── easyloader.html │ ├── form.html │ ├── form_data.json │ ├── layout.html │ ├── layout1.html │ ├── layout2.html │ ├── linkbutton.html │ ├── menu.html │ ├── menubutton.html │ ├── messager.html │ ├── numberbox.html │ ├── numberbox2.html │ ├── numberspinner.html │ ├── pagination.html │ ├── panel.html │ ├── panel2.html │ ├── progressbar.html │ ├── propertygrid.html │ ├── propertygrid_data.json │ ├── resizable.html │ ├── searchbox.html │ ├── slider.html │ ├── splitbutton.html │ ├── tabs.html │ ├── tabs_href_test.html │ ├── timespinner.html │ ├── tree.html │ ├── tree2.html │ ├── tree_data.json │ ├── treegrid.html │ ├── treegrid2.html │ ├── treegrid3.html │ ├── treegrid_data.json │ ├── treegrid_data2.json │ ├── treegrid_data3.json │ ├── treegrid_subdata.json │ ├── validatebox.html │ └── window.html ├── easyloader.js ├── jquery-1.8.0.min.js ├── jquery.easyui.min.js ├── licence_gpl.txt ├── license_commercial.txt ├── locale │ ├── easyui-lang-af.js │ ├── easyui-lang-bg.js │ ├── easyui-lang-ca.js │ ├── easyui-lang-cs.js │ ├── easyui-lang-cz.js │ ├── easyui-lang-da.js │ ├── easyui-lang-de.js │ ├── easyui-lang-en.js │ ├── easyui-lang-es.js │ ├── easyui-lang-fr.js │ ├── easyui-lang-it.js │ ├── easyui-lang-nl.js │ ├── easyui-lang-pt_BR.js │ ├── easyui-lang-ru.js │ ├── easyui-lang-tr.js │ ├── easyui-lang-zh_CN.js │ └── easyui-lang-zh_TW.js ├── plugins │ ├── jquery.accordion.js │ ├── jquery.calendar.js │ ├── jquery.combo.js │ ├── jquery.combobox.js │ ├── jquery.combogrid.js │ ├── jquery.combotree.js │ ├── jquery.datagrid.js │ ├── jquery.datebox.js │ ├── jquery.datetimebox.js │ ├── jquery.dialog.js │ ├── jquery.draggable.js │ ├── jquery.droppable.js │ ├── jquery.form.js │ ├── jquery.layout.js │ ├── jquery.linkbutton.js │ ├── jquery.menu.js │ ├── jquery.menubutton.js │ ├── jquery.messager.js │ ├── jquery.numberbox.js │ ├── jquery.numberspinner.js │ ├── jquery.pagination.js │ ├── jquery.panel.js │ ├── jquery.parser.js │ ├── jquery.progressbar.js │ ├── jquery.propertygrid.js │ ├── jquery.resizable.js │ ├── jquery.searchbox.js │ ├── jquery.slider.js │ ├── jquery.spinner.js │ ├── jquery.splitbutton.js │ ├── jquery.tabs.js │ ├── jquery.timespinner.js │ ├── jquery.tree.js │ ├── jquery.treegrid.js │ ├── jquery.validatebox.js │ └── jquery.window.js ├── readme.txt ├── src │ ├── easyloader.js │ ├── jquery.accordion.js │ ├── jquery.calendar.js │ ├── jquery.combobox.js │ ├── jquery.datebox.js │ ├── jquery.draggable.js │ ├── jquery.droppable.js │ ├── jquery.form.js │ ├── jquery.linkbutton.js │ ├── jquery.menu.js │ ├── jquery.parser.js │ ├── jquery.progressbar.js │ ├── jquery.propertygrid.js │ ├── jquery.resizable.js │ ├── jquery.slider.js │ ├── jquery.tabs.js │ └── jquery.window.js └── themes │ ├── default │ ├── accordion.css │ ├── calendar.css │ ├── combo.css │ ├── combobox.css │ ├── datagrid.css │ ├── datebox.css │ ├── dialog.css │ ├── easyui.css │ ├── images │ │ ├── accordion_collapse.png │ │ ├── accordion_expand.png │ │ ├── blank.gif │ │ ├── button_a_bg.gif │ │ ├── button_plain_hover.png │ │ ├── button_span_bg.gif │ │ ├── calendar_nextmonth.gif │ │ ├── calendar_nextyear.gif │ │ ├── calendar_prevmonth.gif │ │ ├── calendar_prevyear.gif │ │ ├── combo_arrow.gif │ │ ├── datagrid_header_bg.gif │ │ ├── datagrid_row_collapse.gif │ │ ├── datagrid_row_expand.gif │ │ ├── datagrid_sort_asc.gif │ │ ├── datagrid_sort_desc.gif │ │ ├── datagrid_title_bg.png │ │ ├── datebox_arrow.png │ │ ├── layout_arrows.png │ │ ├── menu.gif │ │ ├── menu_downarrow.png │ │ ├── menu_rightarrow.png │ │ ├── menu_sep.png │ │ ├── menu_split_downarrow.png │ │ ├── messager_error.gif │ │ ├── messager_info.gif │ │ ├── messager_question.gif │ │ ├── messager_warning.gif │ │ ├── pagination_first.gif │ │ ├── pagination_last.gif │ │ ├── pagination_load.png │ │ ├── pagination_loading.gif │ │ ├── pagination_next.gif │ │ ├── pagination_prev.gif │ │ ├── panel_loading.gif │ │ ├── panel_title.png │ │ ├── panel_tools.gif │ │ ├── searchbox_button.png │ │ ├── slider_handle.png │ │ ├── spinner_arrow_down.gif │ │ ├── spinner_arrow_up.gif │ │ ├── tabs_active.png │ │ ├── tabs_close.gif │ │ ├── tabs_enabled.png │ │ ├── tabs_leftarrow.png │ │ ├── tabs_rightarrow.png │ │ ├── tree_arrows.gif │ │ ├── tree_checkbox_0.gif │ │ ├── tree_checkbox_1.gif │ │ ├── tree_checkbox_2.gif │ │ ├── tree_dnd_no.png │ │ ├── tree_dnd_yes.png │ │ ├── tree_elbow.png │ │ ├── tree_file.gif │ │ ├── tree_folder.gif │ │ ├── tree_folder_open.gif │ │ ├── tree_loading.gif │ │ ├── validatebox_pointer.gif │ │ └── validatebox_warning.png │ ├── layout.css │ ├── linkbutton.css │ ├── menu.css │ ├── menubutton.css │ ├── messager.css │ ├── pagination.css │ ├── panel.css │ ├── progressbar.css │ ├── propertygrid.css │ ├── searchbox.css │ ├── slider.css │ ├── spinner.css │ ├── splitbutton.css │ ├── tabs.css │ ├── tree.css │ ├── validatebox.css │ └── window.css │ ├── gray │ ├── accordion.css │ ├── calendar.css │ ├── combo.css │ ├── combobox.css │ ├── datagrid.css │ ├── datebox.css │ ├── dialog.css │ ├── easyui.css │ ├── images │ │ ├── accordion_collapse.png │ │ ├── accordion_expand.png │ │ ├── blank.gif │ │ ├── button_a_bg.gif │ │ ├── button_plain_hover.png │ │ ├── button_span_bg.gif │ │ ├── calendar_nextmonth.gif │ │ ├── calendar_nextyear.gif │ │ ├── calendar_prevmonth.gif │ │ ├── calendar_prevyear.gif │ │ ├── combo_arrow.gif │ │ ├── datagrid_header_bg.gif │ │ ├── datagrid_row_collapse.gif │ │ ├── datagrid_row_expand.gif │ │ ├── datagrid_sort_asc.gif │ │ ├── datagrid_sort_desc.gif │ │ ├── datagrid_title_bg.gif │ │ ├── datebox_arrow.png │ │ ├── layout_arrows.png │ │ ├── menu.gif │ │ ├── menu_downarrow.png │ │ ├── menu_rightarrow.png │ │ ├── menu_sep.png │ │ ├── menu_split_downarrow.png │ │ ├── messager_error.gif │ │ ├── messager_info.gif │ │ ├── messager_question.gif │ │ ├── messager_warning.gif │ │ ├── pagination_first.gif │ │ ├── pagination_last.gif │ │ ├── pagination_load.png │ │ ├── pagination_loading.gif │ │ ├── pagination_next.gif │ │ ├── pagination_prev.gif │ │ ├── panel_loading.gif │ │ ├── panel_title.gif │ │ ├── panel_tools.gif │ │ ├── searchbox_button.png │ │ ├── slider_handle.png │ │ ├── spinner_arrow_down.gif │ │ ├── spinner_arrow_up.gif │ │ ├── tabs_close.gif │ │ ├── tabs_enabled.gif │ │ ├── tabs_leftarrow.png │ │ ├── tabs_rightarrow.png │ │ ├── tree_arrows.gif │ │ ├── tree_checkbox_0.gif │ │ ├── tree_checkbox_1.gif │ │ ├── tree_checkbox_2.gif │ │ ├── tree_dnd_no.png │ │ ├── tree_dnd_yes.png │ │ ├── tree_elbow.png │ │ ├── tree_file.gif │ │ ├── tree_folder.gif │ │ ├── tree_folder_open.gif │ │ ├── tree_loading.gif │ │ ├── validatebox_pointer.gif │ │ └── validatebox_warning.png │ ├── layout.css │ ├── linkbutton.css │ ├── menu.css │ ├── menubutton.css │ ├── messager.css │ ├── pagination.css │ ├── panel.css │ ├── progressbar.css │ ├── propertygrid.css │ ├── searchbox.css │ ├── slider.css │ ├── spinner.css │ ├── splitbutton.css │ ├── tabs.css │ ├── tree.css │ ├── validatebox.css │ └── window.css │ ├── icon.css │ ├── icons │ ├── back.png │ ├── blank.gif │ ├── cancel.png │ ├── cut.png │ ├── edit_add.png │ ├── edit_remove.png │ ├── filesave.png │ ├── help.png │ ├── mini_add.png │ ├── mini_edit.png │ ├── mini_refresh.png │ ├── no.png │ ├── ok.png │ ├── pencil.png │ ├── print.png │ ├── redo.png │ ├── reload.png │ ├── search.png │ ├── sum.png │ ├── tip.png │ └── undo.png │ └── metro │ ├── accordion.css │ ├── calendar.css │ ├── combo.css │ ├── combobox.css │ ├── datagrid.css │ ├── datebox.css │ ├── dialog.css │ ├── easyui.css │ ├── images │ ├── accordion_collapse.png │ ├── accordion_expand.png │ ├── blank.gif │ ├── calendar_nextmonth.gif │ ├── calendar_nextyear.gif │ ├── calendar_prevmonth.gif │ ├── calendar_prevyear.gif │ ├── combo_arrow.gif │ ├── datagrid_row_collapse.gif │ ├── datagrid_row_expand.gif │ ├── datagrid_sort_asc.gif │ ├── datagrid_sort_desc.gif │ ├── datebox_arrow.png │ ├── layout_arrows.png │ ├── menu_downarrow.png │ ├── menu_rightarrow.png │ ├── menu_sep.png │ ├── menu_split_downarrow.png │ ├── messager_error.gif │ ├── messager_info.gif │ ├── messager_question.gif │ ├── messager_warning.gif │ ├── pagination_first.gif │ ├── pagination_last.gif │ ├── pagination_load.png │ ├── pagination_loading.gif │ ├── pagination_next.gif │ ├── pagination_prev.gif │ ├── panel_loading.gif │ ├── panel_tools.gif │ ├── searchbox_button.png │ ├── slider_handle.png │ ├── tabs_close.gif │ ├── tabs_leftarrow.png │ ├── tabs_rightarrow.png │ ├── tree_arrows.gif │ ├── tree_checkbox_0.gif │ ├── tree_checkbox_1.gif │ ├── tree_checkbox_2.gif │ ├── tree_dnd_no.png │ ├── tree_dnd_yes.png │ ├── tree_elbow.png │ ├── tree_file.gif │ ├── tree_folder.gif │ ├── tree_folder_open.gif │ ├── tree_loading.gif │ └── validatebox_warning.png │ ├── layout.css │ ├── linkbutton.css │ ├── menu.css │ ├── menubutton.css │ ├── messager.css │ ├── pagination.css │ ├── panel.css │ ├── progressbar.css │ ├── propertygrid.css │ ├── searchbox.css │ ├── slider.css │ ├── splitbutton.css │ ├── tabs.css │ ├── tree.css │ ├── validatebox.css │ └── window.css ├── js ├── bootstrap-affix.js ├── bootstrap-alert.js ├── bootstrap-button.js ├── bootstrap-carousel.js ├── bootstrap-collapse.js ├── bootstrap-dropdown.js ├── bootstrap-modal.js ├── bootstrap-popover.js ├── bootstrap-scrollspy.js ├── bootstrap-tab.js ├── bootstrap-tooltip.js ├── bootstrap-transition.js └── bootstrap-typeahead.js ├── layout.html ├── menu&button.html └── window.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## EasyUI1.3Doc-CN 2 | jQuery easy UI 1.3 中文文档,提供Html版本和Adobe Air两个版本。2012-2013年的项目,已停止维护。 3 | 4 | ## 示例 5 | http://www.zi-han.net/case/easyui/index.html 6 | -------------------------------------------------------------------------------- /air/EasyUI1.3中文文档.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/air/EasyUI1.3中文文档.air -------------------------------------------------------------------------------- /docs/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/docs/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/docs/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/assets/js/bootstrap-transition.js: -------------------------------------------------------------------------------- 1 | /* =================================================== 2 | * bootstrap-transition.js v2.1.1 3 | * http://twitter.github.com/bootstrap/javascript.html#transitions 4 | * =================================================== 5 | * Copyright 2012 Twitter, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * ========================================================== */ 19 | 20 | 21 | !function ($) { 22 | 23 | $(function () { 24 | 25 | "use strict"; // jshint ;_; 26 | 27 | 28 | /* CSS TRANSITION SUPPORT (http://www.modernizr.com/) 29 | * ======================================================= */ 30 | 31 | $.support.transition = (function () { 32 | 33 | var transitionEnd = (function () { 34 | 35 | var el = document.createElement('bootstrap') 36 | , transEndEventNames = { 37 | 'WebkitTransition' : 'webkitTransitionEnd' 38 | , 'MozTransition' : 'transitionend' 39 | , 'OTransition' : 'oTransitionEnd otransitionend' 40 | , 'transition' : 'transitionend' 41 | } 42 | , name 43 | 44 | for (name in transEndEventNames){ 45 | if (el.style[name] !== undefined) { 46 | return transEndEventNames[name] 47 | } 48 | } 49 | 50 | }()) 51 | 52 | return transitionEnd && { 53 | end: transitionEnd 54 | } 55 | 56 | })() 57 | 58 | }) 59 | 60 | }(window.jQuery); -------------------------------------------------------------------------------- /docs/assets/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .prettyprint .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 20px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /docs/docs.js: -------------------------------------------------------------------------------- 1 |  2 | $(function(){ 3 | $("iframe.autoheight").load(function() { 4 | $(this).height($(this).contents().height()); 5 | }); 6 | $("body").append(''); 7 | $(".viewsource").click(function(){ 8 | var url=$(this).parent().prev().find("iframe").attr("src"); 9 | $('#viewSource').modal({ 10 | show:false, 11 | keyboard:true 12 | }); 13 | $.ajax({url:url,dataType:"text",success:function(data){ 14 | $("#viewSourceBox").html(""); 15 | },error:function(){ 16 | $("#viewSourceBox").html("源代码读取出错!请检查配置环境。") 17 | }}); 18 | $("#goDemoPage").click(function(){ 19 | window.open(url); 20 | }); 21 | 22 | }); 23 | $(".otherDemo").click(function(){ 24 | $(this).parent().siblings("iframe").remove(); 25 | $(this).parents(".viewbtnbox").prev().html('') 26 | $("#autoHeight").load(function() { 27 | $(this).height($(this).contents().height()); 28 | }); 29 | }); 30 | $(".nav a").tooltip(); 31 | }); 32 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/calendar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calendar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Calendar

14 |
15 |
16 |
Click to select date.
17 |
18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/combo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Combo - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 25 | 26 | 27 |

Custom Combo

28 |
29 |
30 |
Click the right arrow button to show drop down panel that can be filled with any content.
31 |
32 | 33 | 34 |
35 |
Select a language
36 | Java
37 | C#
38 | Ruby
39 | Basic
40 | Fortran 41 |
42 | 43 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/combobox_data.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"Java" 4 | },{ 5 | "id":2, 6 | "text":"C#" 7 | },{ 8 | "id":3, 9 | "text":"Ruby", 10 | "selected":true 11 | },{ 12 | "id":4, 13 | "text":"Perl" 14 | },{ 15 | "id":5, 16 | "text":"Basic" 17 | }] -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/combogrid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ComboGrid - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 45 | 46 | 47 |

ComboGrid

48 |
49 |
50 |
Click the right arrow button to show the datagrid.
51 |
52 | 53 |
54 | Reload 55 | SetValue 56 | GetValue 57 | Disable 58 | Enable 59 |
60 | 61 | 62 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/combotree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ComboTree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 29 | 30 | 31 |

ComboTree

32 |
33 |
34 |
Click the right arrow button to show the tree.
35 |
36 | 37 |
38 | Reload 39 | SetValue 40 | GetValue 41 | Disable 42 | Enable 43 |
44 |

Single Select

45 | 46 |

Multiple Select

47 | 48 | 49 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datagrid4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom DataGrid Row Style - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 42 | 43 | 44 |

DataGrid - Custom Row Style

45 |
46 |
47 |
You can change the row style in some condition.
48 |
49 | 50 |
51 | 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datagrid5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DataGrid Footer Row - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

DataGrid - Footer Row

14 |
15 |
16 |
Display summary information in footer rows.
17 |
18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Item IDProduct IDList PriceUnit CostAttributeStatus
32 | 33 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datagrid_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "total":239, 3 | "rows":[ 4 | {"code":"001","name":"Name 1","addr":"Address 11","col4":"col4 data"}, 5 | {"code":"002","name":"Name 2","addr":"Address 13","col4":"col4 data"}, 6 | {"code":"003","name":"Name 3","addr":"Address 87","col4":"col4 data"}, 7 | {"code":"004","name":"Name 4","addr":"Address 63","col4":"col4 data"}, 8 | {"code":"005","name":"Name 5","addr":"Address 45","col4":"col4 data"}, 9 | {"code":"006","name":"Name 6","addr":"Address 16","col4":"col4 data"}, 10 | {"code":"007","name":"Name 7","addr":"Address 27","col4":"col4 data"}, 11 | {"code":"008","name":"Name 8","addr":"Address 81","col4":"col4 data"}, 12 | {"code":"009","name":"Name 9","addr":"Address 69","col4":"col4 data"}, 13 | {"code":"010","name":"Name 10","addr":"Address 78","col4":"col4 data"} 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datagrid_data2.json: -------------------------------------------------------------------------------- 1 | {"total":28,"rows":[ 2 | {"productid":"FI-SW-01","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, 3 | {"productid":"K9-DL-01","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, 4 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":28.50,"attr1":"Venomless","itemid":"EST-11"}, 5 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, 6 | {"productid":"RP-LI-02","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, 7 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, 8 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, 9 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":63.50,"attr1":"Adult Female","itemid":"EST-16"}, 10 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, 11 | {"productid":"AV-CB-01","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} 12 | ]} 13 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datagrid_data3.json: -------------------------------------------------------------------------------- 1 | {"total":28,"rows":[ 2 | {"productid":"FI-SW-01","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, 3 | {"productid":"K9-DL-01","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, 4 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":28.50,"attr1":"Venomless","itemid":"EST-11"}, 5 | {"productid":"RP-SN-01","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, 6 | {"productid":"RP-LI-02","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, 7 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, 8 | {"productid":"FL-DSH-01","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, 9 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":63.50,"attr1":"Adult Female","itemid":"EST-16"}, 10 | {"productid":"FL-DLH-02","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, 11 | {"productid":"AV-CB-01","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"} 12 | ],"footer":[ 13 | {"unitcost":19.80,"listprice":60.40,"productid":"Average:"}, 14 | {"unitcost":198.00,"listprice":604.00,"productid":"Total:"} 15 | ]} 16 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datebox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 19 | 20 | 21 |

DateBox

22 |
23 |
24 |
Allow you to select date in your form.
25 |
26 | 27 |
28 | Disable 29 | Enable 30 |
31 | 32 | 33 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/datetimebox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DateTimeBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

DateTimeBox

14 |
15 |
16 |
Allow you to select date and time in your form.
17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/demo.css: -------------------------------------------------------------------------------- 1 | *{ 2 | font-size:12px; 3 | } 4 | body { 5 | font-family:helvetica,tahoma,verdana,sans-serif; 6 | padding:20px; 7 | font-size:13px; 8 | margin:0; 9 | } 10 | h2 { 11 | font-size:18px; 12 | color:#333; 13 | font-weight:bold; 14 | margin:0; 15 | margin-bottom:15px; 16 | } 17 | .demo-info{ 18 | background:#FFFEE6; 19 | color:#8F5700; 20 | padding:12px; 21 | } 22 | .demo-tip{ 23 | width:24px; 24 | height:16px; 25 | float:left; 26 | } 27 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/draggable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Draggable - jQuery EasyUI demo 6 | 7 | 8 | 42 | 43 | 44 | 45 | 46 |

Draggable

47 |
48 |
49 |
50 | Move below box by clicking on it with mouse. 51 |
52 |
53 |
54 | 55 |
56 |
57 | Start Drag
58 | Stop Drag 59 |
60 |
61 |
62 |
Title
63 |
64 |
65 | 66 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/droppable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery EasyUI 6 | 7 | 8 | 28 | 42 | 43 | 44 |

DragDrop

45 |
46 |
Source
47 |
48 |
Apple
49 |
Peach
50 |
Orange
51 |
52 |
53 |
54 |
Target
55 |
68 |
69 |
70 | 71 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/droppable1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery EasyUI 6 | 7 | 8 | 25 | 58 | 59 | 60 |

DragDrop

61 |
62 | drag me! 63 |
Drag 1
64 |
Drag 2
65 |
Drag 3
66 |
67 |
68 | drop here! 69 |
70 | 71 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/droppable2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery EasyUI 6 | 7 | 8 | 27 | 51 | 52 | 53 |

DragDrop

54 | 62 | 63 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/easyloader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 31 | 32 | 33 |

EasyLoader

34 | Load Calendar 35 | Load Dialog 36 |
37 |
38 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/form_data.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"easyui", 3 | "email":"easyui@gmail.com", 4 | "subject":"Subject Title", 5 | "message":"Message Content.", 6 | "language":1 7 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Border Layout - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 |
north region
12 |
west content
13 |
east region
14 |
south region
15 |
16 | 17 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/layout2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Border Layout on Panel - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Border Layout on Panel

14 |
15 |
16 |
The layout can be applied on panel.
17 |
18 | 19 |
20 |
21 |

Layout in Panel

22 |
23 |
24 |
25 |
26 |
27 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
Item IDProduct IDList PriceUnit CostAttributeStatus
40 |
41 |
42 | 43 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/numberbox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NumberBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 19 | 20 | 21 |

NumberBox

22 |
23 |
24 |
The Box can only input number.
25 |
26 | 27 |
28 | Disable 29 | Enable 30 |
31 | 32 | 33 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/numberbox2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Format NumberBox- jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Format NumberBox

14 |
15 |
16 |
Number formatting is the ability to control how a number is displayed.
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 |
Number in the United States
Number in France
Currency:USD
Currency:EUR
43 | 44 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/numberspinner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NumberSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 19 | 20 | 21 |

NumberSpinner

22 |
23 |
24 |
Click spinner button to change value.
25 |
26 | 27 |
28 | Enable 29 | Disable 30 |
31 | Age: 32 | 33 | Salary: 34 | 35 | 36 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/pagination.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Pagination - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Pagination

14 |
15 |
16 |
You can change page number and page size on pager bar.
17 |
18 | 19 |
20 | Loaded 21 | Loading 22 |
23 | 24 |
49 |
50 | 51 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/panel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Panel - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 22 | 23 | 24 |

Panel

25 |
26 |
27 |
Click the right top buttons to perform actions with panel.
28 |
29 | 30 |
31 | Open 32 | Close 33 | Load 34 |
35 |
36 |
39 |

panel

40 |

panel

41 |

panel

42 |

panel

43 |

panel

44 |

panel

45 |

panel

46 |

panel

47 |

panel

48 |

panel

49 |

panel

50 |

panel

51 |
52 |
53 | 54 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/panel2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Panel With Tools - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Panel With Tools

14 |
15 |
16 |
Click the right top buttons to perform actions with panel.
17 |
18 | 19 |
20 |
21 |
23 |

panel

24 |

panel

25 |

panel

26 |

panel

27 |

panel

28 |

panel

29 |

panel

30 |

panel

31 |

panel

32 |

panel

33 |

panel

34 |

panel

35 |
36 |
37 | 38 | 39 | 40 | 41 |
42 | 43 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/progressbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ProgressBar - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 21 | 22 | 23 |

ProgressBar

24 |
25 |
26 |
Click below button to show progress information.
27 |
28 | 29 |
30 | Test 31 |
32 | 33 |
34 | 35 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/propertygrid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PropertyGrid - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 36 | 37 | 38 |

PropertyGrid

39 |
40 |
41 |
Click on row to change each property value.
42 |
43 | 44 |
45 | ShowGroup 46 | HideGroup 47 | HideHeader 48 | GetChanges 49 |
50 | 51 |
53 | 54 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/propertygrid_data.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"name":"Name","value":"Bill Smith","group":"ID Settings","editor":"text"}, 3 | {"name":"Address","value":"","group":"ID Settings","editor":"text"}, 4 | {"name":"Age","value":"40","group":"ID Settings","editor":"numberbox"}, 5 | {"name":"Birthday","value":"01/02/2012","group":"ID Settings","editor":"datebox"}, 6 | {"name":"SSN","value":"123-456-7890","group":"ID Settings","editor":"text"}, 7 | {"name":"Email","value":"bill@gmail.com","group":"Marketing Settings","editor":{ 8 | "type":"validatebox", 9 | "options":{ 10 | "validType":"email" 11 | } 12 | }}, 13 | {"name":"FrequentBuyer","value":"false","group":"Marketing Settings","editor":{ 14 | "type":"checkbox", 15 | "options":{ 16 | "on":true, 17 | "off":false 18 | } 19 | }} 20 | ]} -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/resizable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Insert title here 6 | 7 | 8 | 38 | 39 | 40 | 45 | 46 | 47 |

Resizable

48 |
Resize Only
49 |
50 |
Title
51 | Drag Only 52 |
53 |
Resize/Drag
54 | 55 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/searchbox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SearchBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

SearchBox

14 |
15 |
16 |
Click search button or press enter key in input box to do searching.
17 |
18 | 19 | 21 | 22 |
23 |
All News
24 |
Sports News
25 |
26 | 27 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/slider.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Slider - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Slider

14 |
15 |
16 |
Drag the slider to change the font size.
17 |
18 | 19 |
20 | 29 |
30 |
jQuery EasyUI
31 | 32 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/tabs_href_test.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 |
CodeNameCountryAmount
001televisionUSA2
002computerUSA3
003washing machineUSA3
004washing machineUSA2
005electric fanUSA2
48 | 49 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/timespinner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TimeSpinner - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 19 | 20 | 21 |

TimeSpinner

22 |
23 |
24 |
Click spin button to adjust time.
25 |
26 | 27 |
28 | Enable 29 | Disable 30 |
31 | Begin Time: 32 | 33 | End Time: 34 | 35 | 36 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/tree2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Editable Tree - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Editable Tree

14 |
15 |
16 |
Click the node to begin edit, press enter key to stop edit or esc key to cancel edit.
17 |
18 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/tree_data.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "text":"Folder1", 4 | "iconCls":"icon-ok", 5 | "children":[{ 6 | "id":2, 7 | "text":"File1", 8 | "checked":true 9 | },{ 10 | "id":3, 11 | "text":"Folder2", 12 | "state":"open", 13 | "children":[{ 14 | "id":4, 15 | "text":"File2", 16 | "attributes":{ 17 | "p1":"value1", 18 | "p2":"value2" 19 | }, 20 | "checked":true, 21 | "iconCls":"icon-reload" 22 | },{ 23 | "id": 8, 24 | "text":"Folder3", 25 | "state":"closed", 26 | "children":[{ 27 | "id":9, 28 | "text":"File31" 29 | },{ 30 | "id":10, 31 | "text":"File32" 32 | }] 33 | }] 34 | }] 35 | },{ 36 | "text":"Languages", 37 | "state":"closed", 38 | "children":[{ 39 | "id":"j1", 40 | "text":"Java" 41 | },{ 42 | "id":"j2", 43 | "text":"C#" 44 | }] 45 | }] -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/treegrid2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TreeGrid with Footer - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 10 | 11 | 52 | 53 | 54 |

TreeGrid

55 |
56 |
57 |
Show summary information on treegrid footer.
58 |
59 | 60 |
61 | 62 | 63 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/treegrid_data.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "id":1, 3 | "code":"01", 4 | "name":"name1", 5 | "addr":"address1", 6 | "col4":"col4 data", 7 | "iconCls":"icon-ok", 8 | "children":[{ 9 | "id":2, 10 | "code":"0101", 11 | "name":"name11", 12 | "addr":"address11", 13 | "checked":true 14 | },{ 15 | "id":3, 16 | "code":"0102", 17 | "name":"name12", 18 | "addr":"address12", 19 | "state":"closed" 20 | }] 21 | },{ 22 | "code":"02", 23 | "name":"Languages abc", 24 | "addr":"address2", 25 | "col4":"col4 data", 26 | "state":"closed", 27 | "children":[{ 28 | "code":"0201", 29 | "name":"Java", 30 | "col4":"col4 data", 31 | "state":"closed", 32 | "children":[{ 33 | "code":"02013", 34 | "name":"jdk1" 35 | },{ 36 | "code":"02014", 37 | "name":"jdk2" 38 | }] 39 | },{ 40 | "code":"0202", 41 | "name":"C#", 42 | "col4":"col4 data" 43 | }] 44 | }] -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/treegrid_data2.json: -------------------------------------------------------------------------------- 1 | {"total":7,"rows":[ 2 | {"id":1,"name":"All Tasks","begin":"3/4/2010","end":"3/20/2010","progress":60,"iconCls":"icon-ok"}, 3 | {"id":2,"name":"Designing","begin":"3/4/2010","end":"3/10/2010","progress":100,"_parentId":1,"state":"closed"}, 4 | {"id":21,"name":"Database","persons":2,"begin":"3/4/2010","end":"3/6/2010","progress":100,"_parentId":2}, 5 | {"id":22,"name":"UML","persons":1,"begin":"3/7/2010","end":"3/8/2010","progress":100,"_parentId":2}, 6 | {"id":23,"name":"Export Document","persons":1,"begin":"3/9/2010","end":"3/10/2010","progress":100,"_parentId":2}, 7 | {"id":3,"name":"Coding","persons":2,"begin":"3/11/2010","end":"3/18/2010","progress":80}, 8 | {"id":4,"name":"Testing","persons":1,"begin":"3/19/2010","end":"3/20/2010","progress":20} 9 | ],"footer":[ 10 | {"name":"Total Persons:","persons":7,"iconCls":"icon-sum"} 11 | ]} 12 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/treegrid_subdata.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "code":"01021", 3 | "name":"name01021", 4 | "addr":"address01022", 5 | "col4":"col4 data" 6 | },{ 7 | "code":"01022", 8 | "name":"01022", 9 | "addr":"address01022", 10 | "col4":"col4 data" 11 | }] -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/demo/validatebox.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ValidateBox - jQuery EasyUI Demo 6 | 7 | 8 | 9 | 16 | 17 | 18 | 19 | 20 |

ValidateBox

21 |
22 |
23 |
It's easy to add validate logic to a input box.
24 |
25 | 26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
Name:
Email:
URL:
Note:
45 |
46 | 47 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/license_commercial.txt: -------------------------------------------------------------------------------- 1 | This license agreement refers to jQuery EasyUI software - Commercial License. 2 | 3 | jQuery EasyUI Team grants to you a limited, non-transferable and non-exclusive right to use, royalty-free, copy and modify the software. 4 | 5 | The Licensee has the right to use the software by up to 5 developers at a time. There are no limitations on the number of projects/sites you can use the software in, you can use it on any number of projects/sites you need. There is no time limit, you can use the software for any period of time you need. There is no restriction while you are developing your solution. There are no royalties of any kind involved. 6 | 7 | Modifications to the software are allowed but you may not: 8 | a) Distribute the modified software or part(s) of it as standalone application. 9 | b) Sublicense, rent, lease or lend any portion of the software. 10 | c) Modify or remove any copyright notices from any of the software files. 11 | 12 | The Licensee has the right to apply for tech support on the software within 1 month since purchasing the product and bug fixing during the same period. 13 | 14 | The Licensee has the right to get free upgrades for 1 year since purchasing the product. 15 | 16 | jQuery EasyUI Team retain all ownership rights to the software. 17 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-af.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = 'Bladsy'; 3 | $.fn.pagination.defaults.afterPageText = 'Van {pages}'; 4 | $.fn.pagination.defaults.displayMsg = 'Wys (from) tot (to) van (total) items'; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = 'Verwerking, wag asseblief ...'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = 'Ok'; 14 | $.messager.defaults.cancel = 'Die styl'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = "Die veld is verpligtend."; 18 | $.fn.validatebox.defaults.rules.email.message = "Gee 'n geldige e-pos adres."; 19 | $.fn.validatebox.defaults.rules.url.message = "Gee 'n geldige URL nie."; 20 | $.fn.validatebox.defaults.rules.length.message = "Voer 'n waarde tussen {0} en {1}."; 21 | } 22 | if ($.fn.numberbox){ 23 | $.fn.numberbox.defaults.missingMessage = 'Die veld is verpligtend.'; 24 | } 25 | if ($.fn.combobox){ 26 | $.fn.combobox.defaults.missingMessage = 'Die veld is verpligtend.'; 27 | } 28 | if ($.fn.combotree){ 29 | $.fn.combotree.defaults.missingMessage = 'Die veld is verpligtend.'; 30 | } 31 | if ($.fn.combogrid){ 32 | $.fn.combogrid.defaults.missingMessage = 'Die veld is verpligtend.'; 33 | } 34 | if ($.fn.calendar){ 35 | $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S']; 36 | $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 37 | } 38 | if ($.fn.datebox){ 39 | $.fn.datebox.defaults.currentText = 'Vandag'; 40 | $.fn.datebox.defaults.closeText = 'Sluit'; 41 | $.fn.datebox.defaults.okText = 'Ok'; 42 | $.fn.datebox.defaults.missingMessage = 'Die veld is verpligtend.'; 43 | } 44 | if ($.fn.datetimebox && $.fn.datebox){ 45 | $.extend($.fn.datetimebox.defaults,{ 46 | currentText: $.fn.datebox.defaults.currentText, 47 | closeText: $.fn.datebox.defaults.closeText, 48 | okText: $.fn.datebox.defaults.okText, 49 | missingMessage: $.fn.datebox.defaults.missingMessage 50 | }); 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-ca.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = 'Pàgina'; 3 | $.fn.pagination.defaults.afterPageText = 'de {pages}'; 4 | $.fn.pagination.defaults.displayMsg = "Veient {from} a {to} de {total} d'articles"; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = 'Elaboració, si us plau esperi ...'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = 'Ok'; 14 | $.messager.defaults.cancel = 'Cancel'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = 'Aquest camp és obligatori.'; 18 | $.fn.validatebox.defaults.rules.email.message = 'Introduïu una adreça de correu electrònic vàlida.'; 19 | $.fn.validatebox.defaults.rules.url.message = 'Si us plau, introduïu un URL vàlida.'; 20 | $.fn.validatebox.defaults.rules.length.message = 'Si us plau, introduïu un valor entre {0} i {1}.'; 21 | } 22 | if ($.fn.numberbox){ 23 | $.fn.numberbox.defaults.missingMessage = 'Aquest camp és obligatori.'; 24 | } 25 | if ($.fn.combobox){ 26 | $.fn.combobox.defaults.missingMessage = 'Aquest camp és obligatori.'; 27 | } 28 | if ($.fn.combotree){ 29 | $.fn.combotree.defaults.missingMessage = 'Aquest camp és obligatori.'; 30 | } 31 | if ($.fn.combogrid){ 32 | $.fn.combogrid.defaults.missingMessage = 'Aquest camp és obligatori.'; 33 | } 34 | if ($.fn.calendar){ 35 | $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S']; 36 | $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 37 | } 38 | if ($.fn.datebox){ 39 | $.fn.datebox.defaults.currentText = 'Avui'; 40 | $.fn.datebox.defaults.closeText = 'Tancar'; 41 | $.fn.datebox.defaults.okText = 'Ok'; 42 | $.fn.datebox.defaults.missingMessage = 'Aquest camp és obligatori.'; 43 | } 44 | if ($.fn.datetimebox && $.fn.datebox){ 45 | $.extend($.fn.datetimebox.defaults,{ 46 | currentText: $.fn.datebox.defaults.currentText, 47 | closeText: $.fn.datebox.defaults.closeText, 48 | okText: $.fn.datebox.defaults.okText, 49 | missingMessage: $.fn.datebox.defaults.missingMessage 50 | }); 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-cs.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = 'Strana'; 3 | $.fn.pagination.defaults.afterPageText = 'z {pages}'; 4 | $.fn.pagination.defaults.displayMsg = 'Zobrazuji {from} do {to} z {celkové} položky'; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = 'Zpracování, čekejte prosím ...'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = 'Ok'; 14 | $.messager.defaults.cancel = 'Zrušit'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = 'Toto pole je vyžadováno.'; 18 | $.fn.validatebox.defaults.rules.email.message = 'Zadejte prosím platnou e-mailovou adresu.'; 19 | $.fn.validatebox.defaults.rules.url.message = 'Zadejte prosím platnou adresu URL.'; 20 | $.fn.validatebox.defaults.rules.length.message = 'Prosím, zadejte hodnotu mezi {0} a {1}.'; 21 | } 22 | if ($.fn.numberbox){ 23 | $.fn.numberbox.defaults.missingMessage = 'Toto pole je vyžadováno.'; 24 | } 25 | if ($.fn.combobox){ 26 | $.fn.combobox.defaults.missingMessage = 'Toto pole je vyžadováno.'; 27 | } 28 | if ($.fn.combotree){ 29 | $.fn.combotree.defaults.missingMessage = 'Toto pole je vyžadováno.'; 30 | } 31 | if ($.fn.combogrid){ 32 | $.fn.combogrid.defaults.missingMessage = 'Toto pole je vyžadováno.'; 33 | } 34 | if ($.fn.calendar){ 35 | $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S']; 36 | $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 37 | } 38 | if ($.fn.datebox){ 39 | $.fn.datebox.defaults.currentText = 'Dnes'; 40 | $.fn.datebox.defaults.closeText = 'Zavřít'; 41 | $.fn.datebox.defaults.okText = 'Ok'; 42 | $.fn.datebox.defaults.missingMessage = 'Toto pole je vyžadováno.'; 43 | } 44 | if ($.fn.datetimebox && $.fn.datebox){ 45 | $.extend($.fn.datetimebox.defaults,{ 46 | currentText: $.fn.datebox.defaults.currentText, 47 | closeText: $.fn.datebox.defaults.closeText, 48 | okText: $.fn.datebox.defaults.okText, 49 | missingMessage: $.fn.datebox.defaults.missingMessage 50 | }); 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-da.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = 'Page'; 3 | $.fn.pagination.defaults.afterPageText = 'af {pages}'; 4 | $.fn.pagination.defaults.displayMsg = 'Viser {from} til {to} af {total} poster'; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = 'Behandling, vent venligst ...'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = 'Ok'; 14 | $.messager.defaults.cancel = 'Annuller'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = 'Dette felt er påkrævet.'; 18 | $.fn.validatebox.defaults.rules.email.message = 'Angiv en gyldig e-mail-adresse.'; 19 | $.fn.validatebox.defaults.rules.url.message = 'Angiv en gyldig webadresse.'; 20 | $.fn.validatebox.defaults.rules.length.message = 'Angiv en værdi mellem {0} og {1}.'; 21 | } 22 | if ($.fn.numberbox){ 23 | $.fn.numberbox.defaults.missingMessage = 'Dette felt er påkrævet.'; 24 | } 25 | if ($.fn.combobox){ 26 | $.fn.combobox.defaults.missingMessage = 'Dette felt er påkrævet.'; 27 | } 28 | if ($.fn.combotree){ 29 | $.fn.combotree.defaults.missingMessage = 'Dette felt er påkrævet.'; 30 | } 31 | if ($.fn.combogrid){ 32 | $.fn.combogrid.defaults.missingMessage = 'Dette felt er påkrævet.'; 33 | } 34 | if ($.fn.calendar){ 35 | $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S']; 36 | $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 37 | } 38 | if ($.fn.datebox){ 39 | $.fn.datebox.defaults.currentText = 'I dag'; 40 | $.fn.datebox.defaults.closeText = 'Luk'; 41 | $.fn.datebox.defaults.okText = 'Ok'; 42 | $.fn.datebox.defaults.missingMessage = 'Dette felt er påkrævet.'; 43 | } 44 | if ($.fn.datetimebox && $.fn.datebox){ 45 | $.extend($.fn.datetimebox.defaults,{ 46 | currentText: $.fn.datebox.defaults.currentText, 47 | closeText: $.fn.datebox.defaults.closeText, 48 | okText: $.fn.datebox.defaults.okText, 49 | missingMessage: $.fn.datebox.defaults.missingMessage 50 | }); 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-nl.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = 'Pagina'; 3 | $.fn.pagination.defaults.afterPageText = 'van {pages}'; 4 | $.fn.pagination.defaults.displayMsg = 'Tonen van {from} tot {to} van de {totale} items'; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = 'Verwerking, even geduld ...'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = 'Okee'; 14 | $.messager.defaults.cancel = 'Annuleren'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = 'Dit veld is verplicht.'; 18 | $.fn.validatebox.defaults.rules.email.message = 'Geef een geldig e-mailadres.'; 19 | $.fn.validatebox.defaults.rules.url.message = 'Vul een geldige URL.'; 20 | $.fn.validatebox.defaults.rules.length.message = 'Voer een waarde tussen {0} en {1}.'; 21 | } 22 | if ($.fn.numberbox){ 23 | $.fn.numberbox.defaults.missingMessage = 'Dit veld is verplicht.'; 24 | } 25 | if ($.fn.combobox){ 26 | $.fn.combobox.defaults.missingMessage = 'Dit veld is verplicht.'; 27 | } 28 | if ($.fn.combotree){ 29 | $.fn.combotree.defaults.missingMessage = 'Dit veld is verplicht.'; 30 | } 31 | if ($.fn.combogrid){ 32 | $.fn.combogrid.defaults.missingMessage = 'Dit veld is verplicht.'; 33 | } 34 | if ($.fn.calendar){ 35 | $.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S']; 36 | $.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 37 | } 38 | if ($.fn.datebox){ 39 | $.fn.datebox.defaults.currentText = 'Vandaag'; 40 | $.fn.datebox.defaults.closeText = 'Dicht'; 41 | $.fn.datebox.defaults.okText = 'Okee'; 42 | $.fn.datebox.defaults.missingMessage = 'Dit veld is verplicht.'; 43 | } 44 | if ($.fn.datetimebox && $.fn.datebox){ 45 | $.extend($.fn.datetimebox.defaults,{ 46 | currentText: $.fn.datebox.defaults.currentText, 47 | closeText: $.fn.datebox.defaults.closeText, 48 | okText: $.fn.datebox.defaults.okText, 49 | missingMessage: $.fn.datebox.defaults.missingMessage 50 | }); 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/locale/easyui-lang-zh_TW.js: -------------------------------------------------------------------------------- 1 | if ($.fn.pagination){ 2 | $.fn.pagination.defaults.beforePageText = '第'; 3 | $.fn.pagination.defaults.afterPageText = '共{pages}頁'; 4 | $.fn.pagination.defaults.displayMsg = '顯示{from}到{to},共{total}記錄'; 5 | } 6 | if ($.fn.datagrid){ 7 | $.fn.datagrid.defaults.loadMsg = '正在處理,請稍待。。。'; 8 | } 9 | if ($.fn.treegrid && $.fn.datagrid){ 10 | $.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg; 11 | } 12 | if ($.messager){ 13 | $.messager.defaults.ok = '確定'; 14 | $.messager.defaults.cancel = '取消'; 15 | } 16 | if ($.fn.validatebox){ 17 | $.fn.validatebox.defaults.missingMessage = '該輸入項為必輸項'; 18 | $.fn.validatebox.defaults.rules.email.message = '請輸入有效的電子郵件地址'; 19 | $.fn.validatebox.defaults.rules.url.message = '請輸入有效的URL地址'; 20 | $.fn.validatebox.defaults.rules.length.message = '輸入內容長度必須介於{0}和{1}之間'; 21 | $.fn.validatebox.defaults.rules.remote.message = '請修正此欄位'; 22 | } 23 | if ($.fn.numberbox){ 24 | $.fn.numberbox.defaults.missingMessage = '該輸入項為必輸項'; 25 | } 26 | if ($.fn.combobox){ 27 | $.fn.combobox.defaults.missingMessage = '該輸入項為必輸項'; 28 | } 29 | if ($.fn.combotree){ 30 | $.fn.combotree.defaults.missingMessage = '該輸入項為必輸項'; 31 | } 32 | if ($.fn.combogrid){ 33 | $.fn.combogrid.defaults.missingMessage = '該輸入項為必輸項'; 34 | } 35 | if ($.fn.calendar){ 36 | $.fn.calendar.defaults.weeks = ['日','一','二','三','四','五','六']; 37 | $.fn.calendar.defaults.months = ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月']; 38 | } 39 | if ($.fn.datebox){ 40 | $.fn.datebox.defaults.currentText = '今天'; 41 | $.fn.datebox.defaults.closeText = '關閉'; 42 | $.fn.datebox.defaults.okText = '確定'; 43 | $.fn.datebox.defaults.missingMessage = '該輸入項為必輸項'; 44 | } 45 | if ($.fn.datetimebox && $.fn.datebox){ 46 | $.extend($.fn.datetimebox.defaults,{ 47 | currentText: $.fn.datebox.defaults.currentText, 48 | closeText: $.fn.datebox.defaults.closeText, 49 | okText: $.fn.datebox.defaults.okText, 50 | missingMessage: $.fn.datebox.defaults.missingMessage 51 | }); 52 | } 53 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/plugins/jquery.droppable.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jQuery EasyUI 1.3.1 3 | * 4 | * Licensed under the GPL terms 5 | * To use it on other terms please contact us 6 | * 7 | * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] 8 | * 9 | */ 10 | (function($){ 11 | function _1(_2){ 12 | $(_2).addClass("droppable"); 13 | $(_2).bind("_dragenter",function(e,_3){ 14 | $.data(_2,"droppable").options.onDragEnter.apply(_2,[e,_3]); 15 | }); 16 | $(_2).bind("_dragleave",function(e,_4){ 17 | $.data(_2,"droppable").options.onDragLeave.apply(_2,[e,_4]); 18 | }); 19 | $(_2).bind("_dragover",function(e,_5){ 20 | $.data(_2,"droppable").options.onDragOver.apply(_2,[e,_5]); 21 | }); 22 | $(_2).bind("_drop",function(e,_6){ 23 | $.data(_2,"droppable").options.onDrop.apply(_2,[e,_6]); 24 | }); 25 | }; 26 | $.fn.droppable=function(_7,_8){ 27 | if(typeof _7=="string"){ 28 | return $.fn.droppable.methods[_7](this,_8); 29 | } 30 | _7=_7||{}; 31 | return this.each(function(){ 32 | var _9=$.data(this,"droppable"); 33 | if(_9){ 34 | $.extend(_9.options,_7); 35 | }else{ 36 | _1(this); 37 | $.data(this,"droppable",{options:$.extend({},$.fn.droppable.defaults,$.fn.droppable.parseOptions(this),_7)}); 38 | } 39 | }); 40 | }; 41 | $.fn.droppable.methods={options:function(jq){ 42 | return $.data(jq[0],"droppable").options; 43 | },enable:function(jq){ 44 | return jq.each(function(){ 45 | $(this).droppable({disabled:false}); 46 | }); 47 | },disable:function(jq){ 48 | return jq.each(function(){ 49 | $(this).droppable({disabled:true}); 50 | }); 51 | }}; 52 | $.fn.droppable.parseOptions=function(_a){ 53 | var t=$(_a); 54 | return $.extend({},$.parser.parseOptions(_a,["accept"]),{disabled:(t.attr("disabled")?true:undefined)}); 55 | }; 56 | $.fn.droppable.defaults={accept:null,disabled:false,onDragEnter:function(e,_b){ 57 | },onDragOver:function(e,_c){ 58 | },onDragLeave:function(e,_d){ 59 | },onDrop:function(e,_e){ 60 | }}; 61 | })(jQuery); 62 | 63 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/plugins/jquery.numberspinner.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jQuery EasyUI 1.3.1 3 | * 4 | * Licensed under the GPL terms 5 | * To use it on other terms please contact us 6 | * 7 | * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] 8 | * 9 | */ 10 | (function($){ 11 | function _1(_2){ 12 | var _3=$.data(_2,"numberspinner").options; 13 | $(_2).spinner(_3).numberbox(_3); 14 | }; 15 | function _4(_5,_6){ 16 | var _7=$.data(_5,"numberspinner").options; 17 | var v=parseFloat($(_5).numberbox("getValue")||_7.value)||0; 18 | if(_6==true){ 19 | v-=_7.increment; 20 | }else{ 21 | v+=_7.increment; 22 | } 23 | $(_5).numberbox("setValue",v); 24 | }; 25 | $.fn.numberspinner=function(_8,_9){ 26 | if(typeof _8=="string"){ 27 | var _a=$.fn.numberspinner.methods[_8]; 28 | if(_a){ 29 | return _a(this,_9); 30 | }else{ 31 | return this.spinner(_8,_9); 32 | } 33 | } 34 | _8=_8||{}; 35 | return this.each(function(){ 36 | var _b=$.data(this,"numberspinner"); 37 | if(_b){ 38 | $.extend(_b.options,_8); 39 | }else{ 40 | $.data(this,"numberspinner",{options:$.extend({},$.fn.numberspinner.defaults,$.fn.numberspinner.parseOptions(this),_8)}); 41 | } 42 | _1(this); 43 | }); 44 | }; 45 | $.fn.numberspinner.methods={options:function(jq){ 46 | var _c=$.data(jq[0],"numberspinner").options; 47 | return $.extend(_c,{value:jq.numberbox("getValue")}); 48 | },setValue:function(jq,_d){ 49 | return jq.each(function(){ 50 | $(this).numberbox("setValue",_d); 51 | }); 52 | },getValue:function(jq){ 53 | return jq.numberbox("getValue"); 54 | },clear:function(jq){ 55 | return jq.each(function(){ 56 | $(this).spinner("clear"); 57 | $(this).numberbox("clear"); 58 | }); 59 | }}; 60 | $.fn.numberspinner.parseOptions=function(_e){ 61 | return $.extend({},$.fn.spinner.parseOptions(_e),$.fn.numberbox.parseOptions(_e),{}); 62 | }; 63 | $.fn.numberspinner.defaults=$.extend({},$.fn.spinner.defaults,$.fn.numberbox.defaults,{spin:function(_f){ 64 | _4(this,_f); 65 | }}); 66 | })(jQuery); 67 | 68 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/plugins/jquery.progressbar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jQuery EasyUI 1.3.1 3 | * 4 | * Licensed under the GPL terms 5 | * To use it on other terms please contact us 6 | * 7 | * Copyright(c) 2009-2012 stworthy [ stworthy@gmail.com ] 8 | * 9 | */ 10 | (function($){ 11 | function _1(_2){ 12 | $(_2).addClass("progressbar"); 13 | $(_2).html("
 
"); 14 | return $(_2); 15 | }; 16 | function _3(_4,_5){ 17 | var _6=$.data(_4,"progressbar").options; 18 | var _7=$.data(_4,"progressbar").bar; 19 | if(_5){ 20 | _6.width=_5; 21 | } 22 | _7._outerWidth(_6.width); 23 | _7.find("div.progressbar-text").width(_7.width()); 24 | }; 25 | $.fn.progressbar=function(_8,_9){ 26 | if(typeof _8=="string"){ 27 | var _a=$.fn.progressbar.methods[_8]; 28 | if(_a){ 29 | return _a(this,_9); 30 | } 31 | } 32 | _8=_8||{}; 33 | return this.each(function(){ 34 | var _b=$.data(this,"progressbar"); 35 | if(_b){ 36 | $.extend(_b.options,_8); 37 | }else{ 38 | _b=$.data(this,"progressbar",{options:$.extend({},$.fn.progressbar.defaults,$.fn.progressbar.parseOptions(this),_8),bar:_1(this)}); 39 | } 40 | $(this).progressbar("setValue",_b.options.value); 41 | _3(this); 42 | }); 43 | }; 44 | $.fn.progressbar.methods={options:function(jq){ 45 | return $.data(jq[0],"progressbar").options; 46 | },resize:function(jq,_c){ 47 | return jq.each(function(){ 48 | _3(this,_c); 49 | }); 50 | },getValue:function(jq){ 51 | return $.data(jq[0],"progressbar").options.value; 52 | },setValue:function(jq,_d){ 53 | if(_d<0){ 54 | _d=0; 55 | } 56 | if(_d>100){ 57 | _d=100; 58 | } 59 | return jq.each(function(){ 60 | var _e=$.data(this,"progressbar").options; 61 | var _f=_e.text.replace(/{value}/,_d); 62 | var _10=_e.value; 63 | _e.value=_d; 64 | $(this).find("div.progressbar-value").width(_d+"%"); 65 | $(this).find("div.progressbar-text").html(_f); 66 | if(_10!=_d){ 67 | _e.onChange.call(this,_d,_10); 68 | } 69 | }); 70 | }}; 71 | $.fn.progressbar.parseOptions=function(_11){ 72 | return $.extend({},$.parser.parseOptions(_11,["width","text",{value:"number"}])); 73 | }; 74 | $.fn.progressbar.defaults={width:"auto",value:0,text:"{value}%",onChange:function(_12,_13){ 75 | }}; 76 | })(jQuery); 77 | 78 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/readme.txt: -------------------------------------------------------------------------------- 1 | Current Version: 1.3.1 2 | ====================== 3 | This software is allowed to use under GPL or you need to buy commercial license for better support or other purpose. 4 | Please contact us at stworthy@gmail.com 5 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#E0ECFF; 7 | border-top-width:0; 8 | cursor:pointer; 9 | } 10 | .accordion .accordion-header .panel-title{ 11 | font-weight:normal; 12 | } 13 | .accordion .accordion-header-selected .panel-title{ 14 | font-weight:bold; 15 | } 16 | .accordion-noborder .accordion-header{ 17 | border-width:0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body{ 20 | border-width:0px; 21 | } 22 | .accordion-collapse{ 23 | background:url('images/accordion_collapse.png') no-repeat; 24 | } 25 | .accordion-expand{ 26 | background:url('images/accordion_expand.png') no-repeat; 27 | } 28 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #A4BED4; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#E0ECF9 url('images/combo_arrow.gif') no-repeat 3px 4px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .combo-arrow-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .combo-panel{ 37 | background:#fff; 38 | overflow:auto; 39 | } 40 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#fafafa; 9 | } 10 | .combobox-item-selected{ 11 | background:#FBEC88; 12 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background-color:#fafafa; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#888; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#888; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#A4BED4; 30 | } 31 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#fafafa; 6 | padding:2px 5px; 7 | border-bottom:1px solid #eee; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #ccc; 13 | border-right:1px solid #fff; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #eee; 18 | background:#fafafa; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/accordion_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/accordion_collapse.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/accordion_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/accordion_expand.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/blank.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/button_a_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/button_a_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/button_plain_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/button_plain_hover.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/button_span_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/button_span_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/combo_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/combo_arrow.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_header_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_header_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_sort_asc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_sort_desc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datagrid_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datagrid_title_bg.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/menu.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/menu_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/menu_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/menu_sep.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/messager_error.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/messager_info.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/messager_question.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/messager_warning.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_first.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_last.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_load.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_next.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/pagination_prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/pagination_prev.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/panel_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/panel_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/panel_title.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/panel_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/panel_tools.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/spinner_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/spinner_arrow_down.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/spinner_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/spinner_arrow_up.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tabs_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tabs_active.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tabs_close.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tabs_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tabs_enabled.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tabs_leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tabs_leftarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tabs_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tabs_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_arrows.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_dnd_no.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_elbow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_file.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_folder.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_folder_open.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/tree_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/layout.css: -------------------------------------------------------------------------------- 1 | .layout{ 2 | position:relative; 3 | overflow:hidden; 4 | margin:0; 5 | padding:0; 6 | z-index:0; 7 | } 8 | .layout-panel{ 9 | position:absolute; 10 | overflow:hidden; 11 | } 12 | .layout-panel-east,.layout-panel-west{ 13 | z-index:2; 14 | } 15 | .layout-panel-north,.layout-panel-south{ 16 | z-index:3; 17 | } 18 | .layout-button-up{ 19 | background:url('images/layout_arrows.png') no-repeat -16px -16px; 20 | } 21 | .layout-button-down{ 22 | background:url('images/layout_arrows.png') no-repeat -16px 0; 23 | } 24 | .layout-button-left{ 25 | background:url('images/layout_arrows.png') no-repeat 0 0; 26 | } 27 | .layout-button-right{ 28 | background:url('images/layout_arrows.png') no-repeat 0 -16px; 29 | } 30 | .layout-expand{ 31 | position:absolute; 32 | padding:0px 5px; 33 | padding:0px; 34 | background:#D2E0F2; 35 | font-size:1px; 36 | cursor:pointer; 37 | z-index:1; 38 | } 39 | .layout-expand .panel-header{ 40 | background:transparent; 41 | border-bottom-width:0px; 42 | } 43 | .layout-expand .panel-header .panel-tool{ 44 | top: 5px; 45 | } 46 | .layout-expand .panel-body{ 47 | overflow:hidden; 48 | } 49 | .layout-expand-over{ 50 | background:#E1F0F2; 51 | } 52 | .layout-body{ 53 | overflow:auto; 54 | background:#fff; 55 | } 56 | .layout-split-proxy-h{ 57 | position:absolute; 58 | width:5px; 59 | background:#ccc; 60 | font-size:1px; 61 | cursor:e-resize; 62 | display:none; 63 | z-index:5; 64 | } 65 | .layout-split-proxy-v{ 66 | position:absolute; 67 | height:5px; 68 | background:#ccc; 69 | font-size:1px; 70 | cursor:n-resize; 71 | display:none; 72 | z-index:5; 73 | } 74 | .layout-split-north{ 75 | border-bottom:5px solid #D2E0F2; 76 | } 77 | .layout-split-south{ 78 | border-top:5px solid #D2E0F2; 79 | } 80 | .layout-split-east{ 81 | border-left:5px solid #D2E0F2; 82 | } 83 | .layout-split-west{ 84 | border-right:5px solid #D2E0F2; 85 | } 86 | .layout-mask{ 87 | position:absolute; 88 | background:#fafafa; 89 | filter:alpha(opacity=10); 90 | opacity:0.10; 91 | z-index:4; 92 | } 93 | 94 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/linkbutton.css: -------------------------------------------------------------------------------- 1 | a.l-btn{ 2 | color:#444; 3 | background:url('images/button_a_bg.gif') no-repeat top right; 4 | font-size:12px; 5 | text-decoration:none; 6 | display:inline-block; 7 | zoom:1; 8 | height:24px; 9 | padding-right:18px; 10 | cursor:pointer; 11 | outline:none; 12 | } 13 | a.l-btn-plain{ 14 | background:transparent; 15 | padding-right:5px; 16 | border:1px solid transparent; 17 | _border:0px solid #efefef; 18 | _padding:1px 6px 1px 1px; 19 | } 20 | 21 | a.l-btn-disabled{ 22 | color:#ccc; 23 | opacity:0.5; 24 | filter:alpha(opacity=50); 25 | cursor:default; 26 | } 27 | a.l-btn span.l-btn-left{ 28 | display:inline-block; 29 | background:url('images/button_span_bg.gif') no-repeat top left; 30 | padding:4px 0px 4px 18px; 31 | line-height:16px; 32 | height:16px; 33 | } 34 | a.l-btn-plain span.l-btn-left{ 35 | background:transparent; 36 | padding-left:5px; 37 | } 38 | 39 | a.l-btn span span.l-btn-text{ 40 | display:inline-block; 41 | height:16px; 42 | line-height:16px; 43 | padding:0px; 44 | } 45 | a.l-btn span span span.l-btn-empty{ 46 | display:inline-block; 47 | padding:0px; 48 | width:16px; 49 | } 50 | a:hover.l-btn{ 51 | background-position: bottom right; 52 | outline:none; 53 | } 54 | a:hover.l-btn span.l-btn-left{ 55 | background-position: bottom left; 56 | } 57 | 58 | a:hover.l-btn-plain{ 59 | border:1px solid #7eabcd; 60 | background:url('images/button_plain_hover.png') repeat-x left bottom; 61 | _padding:0px 5px 0px 0px; 62 | -moz-border-radius:3px; 63 | -webkit-border-radius:3px; 64 | border-radius:3px; 65 | } 66 | a:hover.l-btn-disabled{ 67 | background-position:top right; 68 | } 69 | a:hover.l-btn-disabled span.l-btn-left{ 70 | background-position:top left; 71 | } 72 | a.l-btn .l-btn-focus{ 73 | outline:#0000FF dotted thin; 74 | } 75 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/menu.css: -------------------------------------------------------------------------------- 1 | .menu{ 2 | position:absolute; 3 | background:#f0f0f0 url('images/menu.gif') repeat-y; 4 | margin:0; 5 | padding:2px; 6 | border:1px solid #ccc; 7 | overflow:hidden; 8 | } 9 | .menu-item{ 10 | position:relative; 11 | margin:0; 12 | padding:0; 13 | height:22px; 14 | line-height:20px; 15 | overflow:hidden; 16 | font-size:12px; 17 | cursor:pointer; 18 | border:1px solid transparent; 19 | _border:1px solid #f0f0f0; 20 | } 21 | .menu-text{ 22 | position:absolute; 23 | left:28px; 24 | top:0px; 25 | } 26 | .menu-icon{ 27 | position:absolute; 28 | width:16px; 29 | height:16px; 30 | top:3px; 31 | left:2px; 32 | } 33 | .menu-rightarrow{ 34 | position: absolute; 35 | width:4px; 36 | height:7px; 37 | top:7px; 38 | right:5px; 39 | background:url('images/menu_rightarrow.png') no-repeat; 40 | } 41 | .menu-sep{ 42 | margin:3px 0px 3px 24px; 43 | line-height:2px; 44 | font-size:2px; 45 | background:url('images/menu_sep.png') repeat-x; 46 | } 47 | .menu-active{ 48 | border:1px solid #7eabcd; 49 | background:#fafafa; 50 | -moz-border-radius:3px; 51 | -webkit-border-radius:3px; 52 | border-radius:3px; 53 | } 54 | .menu-shadow{ 55 | position:absolute; 56 | background:#ddd; 57 | -moz-border-radius:5px; 58 | -webkit-border-radius:5px; 59 | border-radius:5px; 60 | -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 61 | -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 62 | box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 63 | filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); 64 | } 65 | .menu-item-disabled{ 66 | opacity:0.5; 67 | filter:alpha(opacity=50); 68 | cursor:default; 69 | } 70 | .menu-active-disabled{ 71 | border-color:#d3d3d3; 72 | } 73 | 74 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:transparent; 17 | border:1px solid #7eabcd; 18 | _padding:0px 5px 0px 0px; 19 | -moz-border-radius:3px; 20 | -webkit-border-radius:3px; 21 | border-radius:3px; 22 | } 23 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination td{ 9 | border:0; 10 | } 11 | .pagination-btn-separator{ 12 | float:left; 13 | height:24px; 14 | border-left:1px solid #ccc; 15 | border-right:1px solid #fff; 16 | margin:3px 1px; 17 | } 18 | .pagination-num{ 19 | border:1px solid #ccc; 20 | margin:0 2px; 21 | } 22 | .pagination-page-list{ 23 | margin:0px 6px; 24 | } 25 | .pagination-info{ 26 | float:right; 27 | padding-right:6px; 28 | padding-top:8px; 29 | font-size:12px; 30 | } 31 | .pagination span{ 32 | font-size:12px; 33 | } 34 | .pagination-first{ 35 | background:url('images/pagination_first.gif') no-repeat; 36 | } 37 | .pagination-prev{ 38 | background:url('images/pagination_prev.gif') no-repeat; 39 | } 40 | .pagination-next{ 41 | background:url('images/pagination_next.gif') no-repeat; 42 | } 43 | .pagination-last{ 44 | background:url('images/pagination_last.gif') no-repeat; 45 | } 46 | .pagination-load{ 47 | background:url('images/pagination_load.png') no-repeat; 48 | } 49 | .pagination-loading{ 50 | background:url('images/pagination_loading.gif') no-repeat; 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/panel.css: -------------------------------------------------------------------------------- 1 | .panel{ 2 | overflow:hidden; 3 | font-size:12px; 4 | } 5 | .panel-header{ 6 | padding:5px; 7 | line-height:15px; 8 | color:#15428b; 9 | font-weight:bold; 10 | font-size:12px; 11 | background:url('images/panel_title.png') repeat-x; 12 | position:relative; 13 | border:1px solid #99BBE8; 14 | } 15 | .panel-title{ 16 | background:url('images/blank.gif') no-repeat; 17 | } 18 | .panel-header-noborder{ 19 | border-width:0px; 20 | border-bottom:1px solid #99BBE8; 21 | } 22 | .panel-body{ 23 | overflow:auto; 24 | border:1px solid #99BBE8; 25 | border-top-width:0px; 26 | } 27 | .panel-body-noheader{ 28 | border-top-width:1px; 29 | } 30 | .panel-body-noborder{ 31 | border-width:0px; 32 | } 33 | .panel-with-icon{ 34 | padding-left:18px; 35 | } 36 | .panel-icon{ 37 | position:absolute; 38 | left:5px; 39 | top:4px; 40 | width:16px; 41 | height:16px; 42 | } 43 | 44 | .panel-tool{ 45 | position:absolute; 46 | right:5px; 47 | top:4px; 48 | } 49 | .panel-tool a{ 50 | display:inline-block; 51 | width:16px; 52 | height:16px; 53 | opacity:0.6; 54 | filter:alpha(opacity=60); 55 | margin-left:2px; 56 | } 57 | .panel-tool a:hover{ 58 | opacity:1; 59 | filter:alpha(opacity=100); 60 | } 61 | .panel-tool-close{ 62 | background:url('images/panel_tools.gif') no-repeat -16px 0px; 63 | } 64 | .panel-tool-min{ 65 | background:url('images/panel_tools.gif') no-repeat 0px 0px; 66 | } 67 | .panel-tool-max{ 68 | background:url('images/panel_tools.gif') no-repeat 0px -16px; 69 | } 70 | .panel-tool-restore{ 71 | background:url('images/panel_tools.gif') no-repeat -16px -16px; 72 | } 73 | .panel-tool-collapse{ 74 | background:url('images/panel_tools.gif') no-repeat -32px 0; 75 | } 76 | .panel-tool-expand{ 77 | background:url('images/panel_tools.gif') no-repeat -32px -16px; 78 | } 79 | .panel-loading{ 80 | padding:11px 0px 10px 30px; 81 | background:url('images/panel_loading.gif') no-repeat 10px 10px; 82 | } 83 | .panel-noscroll{ 84 | overflow:hidden; 85 | } 86 | .panel-fit,.panel-fit body{ 87 | height:100%; 88 | margin:0; 89 | padding:0; 90 | border:0; 91 | overflow:hidden; 92 | } 93 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #99BBE8; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#15428b; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background-color:#FF8D40; 13 | border-radius:5px 0 0 5px; 14 | width:0; 15 | } 16 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#E0ECFF; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#E0ECFF; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#E0ECFF; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#416AA3; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #A4BED4; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/searchbox_button.png') no-repeat center center; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | background-color:#E0ECF9; 42 | height:20px; 43 | border:0; 44 | padding:0 6px 0 0; 45 | vertical-align:top; 46 | } 47 | .searchbox a.l-btn .l-btn-left{ 48 | padding:2px 0 2px 2px; 49 | } 50 | .searchbox a.l-btn-plain:hover{ 51 | -moz-border-radius:0px; 52 | -webkit-border-radius:0px; 53 | border-radius:0px; 54 | border:0; 55 | padding:0 6px 0 0; 56 | } 57 | .searchbox a.m-btn-plain-active{ 58 | -moz-border-radius:0px; 59 | -webkit-border-radius:0px; 60 | border-radius:0px; 61 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/slider.css: -------------------------------------------------------------------------------- 1 | .slider{ 2 | } 3 | .slider-disabled{ 4 | opacity:0.5; 5 | filter:alpha(opacity=50); 6 | } 7 | .slider-h{ 8 | height:22px; 9 | } 10 | .slider-v{ 11 | width:22px; 12 | } 13 | .slider-inner{ 14 | position:relative; 15 | height:6px; 16 | top:7px; 17 | border:1px solid #99BBE8; 18 | background:#fafafa; 19 | border-radius:3px; 20 | } 21 | .slider-handle{ 22 | position:absolute; 23 | display:block; 24 | outline:none; 25 | width:20px; 26 | height:20px; 27 | top:-7px; 28 | margin-left:-10px; 29 | background:url('images/slider_handle.png') no-repeat; 30 | } 31 | .slider-tip{ 32 | position:absolute; 33 | display:inline-block; 34 | line-height:12px; 35 | white-space:nowrap; 36 | top:-22px; 37 | } 38 | .slider-rule{ 39 | position:relative; 40 | top:15px; 41 | } 42 | .slider-rule span{ 43 | position:absolute; 44 | display:inline-block; 45 | font-size:0; 46 | height:5px; 47 | border-left:1px solid #999; 48 | } 49 | .slider-rulelabel{ 50 | position:relative; 51 | top:20px; 52 | } 53 | .slider-rulelabel span{ 54 | position:absolute; 55 | display:inline-block; 56 | color:#999; 57 | } 58 | .slider-v .slider-inner{ 59 | width:6px; 60 | left:7px; 61 | top:0; 62 | float:left; 63 | } 64 | .slider-v .slider-handle{ 65 | left:3px; 66 | margin-top:-10px; 67 | } 68 | .slider-v .slider-tip{ 69 | left:-10px; 70 | margin-top:-6px; 71 | } 72 | .slider-v .slider-rule{ 73 | float:left; 74 | top:0; 75 | left:16px; 76 | } 77 | .slider-v .slider-rule span{ 78 | width:5px; 79 | height:'auto'; 80 | border-left:0; 81 | border-top:1px solid #999; 82 | } 83 | .slider-v .slider-rulelabel{ 84 | float:left; 85 | top:0; 86 | left:23px; 87 | } 88 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #A4BED4; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#E0ECF9 url('images/spinner_arrow_up.gif') no-repeat 5px 2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#E0ECF9 url('images/spinner_arrow_down.gif') no-repeat 5px 3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#ECF9F9; 38 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:transparent; 24 | border:1px solid #7eabcd; 25 | _padding:0px 5px 0px 0px; 26 | -moz-border-radius:3px; 27 | -webkit-border-radius:3px; 28 | border-radius:3px; 29 | } 30 | a.s-btn-plain-active .s-btn-downarrow{ 31 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 32 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/default/window.css: -------------------------------------------------------------------------------- 1 | .window { 2 | font-size:12px; 3 | position:absolute; 4 | overflow:hidden; 5 | background:transparent url('images/panel_title.png'); 6 | padding:5px; 7 | border:1px solid #99BBE8; 8 | border-radius:5px; 9 | -moz-border-radius:5px; 10 | -webkit-border-radius:5px; 11 | border-radius:5px; 12 | } 13 | .window-shadow{ 14 | position:absolute; 15 | background:#ddd; 16 | border-radius:5px; 17 | -moz-border-radius:5px; 18 | -webkit-border-radius:5px; 19 | border-radius:5px; 20 | -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 21 | -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 22 | box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 23 | filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); 24 | } 25 | .window .window-header{ 26 | background:transparent; 27 | padding:2px 0px 4px 0px; 28 | } 29 | .window .window-body{ 30 | background:#fff; 31 | border:1px solid #99BBE8; 32 | border-top-width:0px; 33 | } 34 | .window .window-body-noheader{ 35 | border-top-width:1px; 36 | } 37 | .window .window-header .panel-icon{ 38 | left:1px; 39 | top:1px; 40 | } 41 | .window .window-header .panel-with-icon{ 42 | padding-left:18px; 43 | } 44 | .window .window-header .panel-tool{ 45 | top:0px; 46 | right:1px; 47 | } 48 | .window-proxy{ 49 | position:absolute; 50 | overflow:hidden; 51 | border:1px dashed #15428b; 52 | } 53 | .window-proxy-mask{ 54 | position:absolute; 55 | background:#fafafa; 56 | filter:alpha(opacity=10); 57 | opacity:0.10; 58 | } 59 | .window-mask{ 60 | position:absolute; 61 | left:0; 62 | top:0; 63 | width:100%; 64 | height:100%; 65 | filter:alpha(opacity=40); 66 | opacity:0.40; 67 | background:#ccc; 68 | font-size:1px; 69 | *zoom:1; 70 | overflow:hidden; 71 | } 72 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | } 5 | .accordion .accordion-header{ 6 | background:#efefef; 7 | border-top-width:0; 8 | cursor:pointer; 9 | } 10 | .accordion .accordion-header .panel-title{ 11 | font-weight:normal; 12 | } 13 | .accordion .accordion-header-selected .panel-title{ 14 | font-weight:bold; 15 | } 16 | .accordion-noborder .accordion-header{ 17 | border-width:0 0 1px; 18 | } 19 | .accordion-noborder .accordion-body{ 20 | border-width:0px; 21 | } 22 | .accordion-collapse{ 23 | background:url('images/accordion_collapse.png') no-repeat; 24 | } 25 | .accordion-expand{ 26 | background:url('images/accordion_expand.png') no-repeat; 27 | } 28 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #d3d3d3; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background:#E0ECF9 url('images/combo_arrow.gif') no-repeat 3px 4px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .combo-arrow-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .combo-panel{ 37 | background:#fff; 38 | overflow:auto; 39 | } 40 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | } 7 | .combobox-item-hover{ 8 | background:#fafafa; 9 | } 10 | .combobox-item-selected{ 11 | background:#FBEC88; 12 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | background-color:#fafafa; 12 | text-align:center; 13 | } 14 | .datebox-current,.datebox-close{ 15 | float:left; 16 | color:#888; 17 | text-decoration:none; 18 | font-weight:bold; 19 | } 20 | .datebox-close{ 21 | float:right; 22 | } 23 | .datebox-ok{ 24 | color:#888; 25 | text-decoration:none; 26 | font-weight:bold; 27 | } 28 | .datebox-button-hover{ 29 | color:#A4BED4; 30 | } 31 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | background:#fafafa; 6 | padding:2px 5px; 7 | border-bottom:1px solid #eee; 8 | } 9 | .dialog-tool-separator{ 10 | float:left; 11 | height:24px; 12 | border-left:1px solid #ccc; 13 | border-right:1px solid #fff; 14 | margin:2px 1px; 15 | } 16 | .dialog-button{ 17 | border-top:1px solid #eee; 18 | background:#fafafa; 19 | padding:5px 5px; 20 | text-align:right; 21 | } 22 | .dialog-button .l-btn{ 23 | margin-left:5px; 24 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/accordion_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/accordion_collapse.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/accordion_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/accordion_expand.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/button_a_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/button_a_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/button_plain_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/button_plain_hover.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/button_span_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/button_span_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/combo_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/combo_arrow.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_header_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_header_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_sort_asc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_sort_desc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datagrid_title_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datagrid_title_bg.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/menu.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/menu_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/menu_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/menu_sep.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/messager_error.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/messager_info.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/messager_question.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/messager_warning.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_first.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_last.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_load.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_next.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/pagination_prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/pagination_prev.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/panel_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/panel_title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/panel_title.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/panel_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/panel_tools.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/spinner_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/spinner_arrow_down.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/spinner_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/spinner_arrow_up.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tabs_close.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tabs_enabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tabs_enabled.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tabs_leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tabs_leftarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tabs_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tabs_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_arrows.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_dnd_no.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_elbow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_file.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_folder.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_folder_open.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/tree_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/validatebox_pointer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/validatebox_pointer.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/layout.css: -------------------------------------------------------------------------------- 1 | .layout{ 2 | position:relative; 3 | overflow:hidden; 4 | margin:0; 5 | padding:0; 6 | z-index:0; 7 | } 8 | .layout-panel{ 9 | position:absolute; 10 | overflow:hidden; 11 | } 12 | .layout-panel-east,.layout-panel-west{ 13 | z-index:2; 14 | } 15 | .layout-panel-north,.layout-panel-south{ 16 | z-index:3; 17 | } 18 | .layout-button-up{ 19 | background:url('images/layout_arrows.png') no-repeat -16px -16px; 20 | } 21 | .layout-button-down{ 22 | background:url('images/layout_arrows.png') no-repeat -16px 0; 23 | } 24 | .layout-button-left{ 25 | background:url('images/layout_arrows.png') no-repeat 0 0; 26 | } 27 | .layout-button-right{ 28 | background:url('images/layout_arrows.png') no-repeat 0 -16px; 29 | } 30 | .layout-expand{ 31 | position:absolute; 32 | padding:0px 5px; 33 | padding:0px; 34 | background:#efefef; 35 | font-size:1px; 36 | cursor:pointer; 37 | z-index:1; 38 | } 39 | .layout-expand .panel-header{ 40 | background:transparent; 41 | border-bottom-width:0px; 42 | } 43 | .layout-expand .panel-header .panel-tool{ 44 | top: 5px; 45 | } 46 | .layout-expand .panel-body{ 47 | overflow:hidden; 48 | } 49 | .layout-expand-over{ 50 | background:#fafafa; 51 | } 52 | .layout-body{ 53 | overflow:auto; 54 | background:#fff; 55 | } 56 | .layout-split-proxy-h{ 57 | position:absolute; 58 | width:5px; 59 | background:#ccc; 60 | font-size:1px; 61 | cursor:e-resize; 62 | display:none; 63 | z-index:5; 64 | } 65 | .layout-split-proxy-v{ 66 | position:absolute; 67 | height:5px; 68 | background:#ccc; 69 | font-size:1px; 70 | cursor:n-resize; 71 | display:none; 72 | z-index:5; 73 | } 74 | .layout-split-north{ 75 | border-bottom:5px solid #efefef; 76 | } 77 | .layout-split-south{ 78 | border-top:5px solid #efefef; 79 | } 80 | .layout-split-east{ 81 | border-left:5px solid #efefef; 82 | } 83 | .layout-split-west{ 84 | border-right:5px solid #efefef; 85 | } 86 | .layout-mask{ 87 | position:absolute; 88 | background:#fafafa; 89 | filter:alpha(opacity=10); 90 | opacity:0.10; 91 | z-index:4; 92 | } 93 | 94 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/linkbutton.css: -------------------------------------------------------------------------------- 1 | a.l-btn{ 2 | color:#444; 3 | background:url('images/button_a_bg.gif') no-repeat top right; 4 | font-size:12px; 5 | text-decoration:none; 6 | display:inline-block; 7 | zoom:1; 8 | height:24px; 9 | padding-right:18px; 10 | cursor:pointer; 11 | outline:none; 12 | } 13 | a.l-btn-plain{ 14 | background:transparent; 15 | padding-right:5px; 16 | border:1px solid transparent; 17 | _border:0px solid #efefef; 18 | _padding:1px 6px 1px 1px; 19 | } 20 | 21 | a.l-btn-disabled{ 22 | color:#ccc; 23 | opacity:0.5; 24 | filter:alpha(opacity=50); 25 | cursor:default; 26 | } 27 | a.l-btn span.l-btn-left{ 28 | display:inline-block; 29 | background:url('images/button_span_bg.gif') no-repeat top left; 30 | padding:4px 0px 4px 18px; 31 | line-height:16px; 32 | height:16px; 33 | } 34 | a.l-btn-plain span.l-btn-left{ 35 | background:transparent; 36 | padding-left:5px; 37 | } 38 | 39 | a.l-btn span span.l-btn-text{ 40 | display:inline-block; 41 | height:16px; 42 | line-height:16px; 43 | padding:0px; 44 | } 45 | a.l-btn span span span.l-btn-empty{ 46 | display:inline-block; 47 | padding:0px; 48 | width:16px; 49 | } 50 | a:hover.l-btn{ 51 | background-position: bottom right; 52 | outline:none; 53 | } 54 | a:hover.l-btn span.l-btn-left{ 55 | background-position: bottom left; 56 | } 57 | 58 | a:hover.l-btn-plain{ 59 | border:1px solid #d3d3d3; 60 | background:url('images/button_plain_hover.png') repeat-x left bottom; 61 | _padding:0px 5px 0px 0px; 62 | -moz-border-radius:3px; 63 | -webkit-border-radius:3px; 64 | border-radius:3px; 65 | } 66 | a:hover.l-btn-disabled{ 67 | background-position:top right; 68 | } 69 | a:hover.l-btn-disabled span.l-btn-left{ 70 | background-position:top left; 71 | } 72 | a.l-btn .l-btn-focus{ 73 | outline:#000 dotted thin; 74 | } 75 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/menu.css: -------------------------------------------------------------------------------- 1 | .menu{ 2 | position:absolute; 3 | background:#f0f0f0 url('images/menu.gif') repeat-y; 4 | margin:0; 5 | padding:2px; 6 | border:1px solid #ccc; 7 | overflow:hidden; 8 | } 9 | .menu-item{ 10 | position:relative; 11 | margin:0; 12 | padding:0; 13 | height:22px; 14 | line-height:20px; 15 | overflow:hidden; 16 | font-size:12px; 17 | cursor:pointer; 18 | border:1px solid transparent; 19 | _border:1px solid #f0f0f0; 20 | } 21 | .menu-text{ 22 | position:absolute; 23 | left:28px; 24 | top:0px; 25 | } 26 | .menu-icon{ 27 | position:absolute; 28 | width:16px; 29 | height:16px; 30 | top:3px; 31 | left:2px; 32 | } 33 | .menu-rightarrow{ 34 | position: absolute; 35 | width:4px; 36 | height:7px; 37 | top:7px; 38 | right:5px; 39 | background:url('images/menu_rightarrow.png') no-repeat; 40 | } 41 | .menu-sep{ 42 | margin:3px 0px 3px 24px; 43 | line-height:2px; 44 | font-size:2px; 45 | background:url('images/menu_sep.png') repeat-x; 46 | } 47 | .menu-active{ 48 | border:1px solid #d3d3d3; 49 | background:#fafafa; 50 | -moz-border-radius:3px; 51 | -webkit-border-radius:3px; 52 | border-radius:3px; 53 | } 54 | .menu-shadow{ 55 | position:absolute; 56 | background:#ddd; 57 | -moz-border-radius:5px; 58 | -webkit-border-radius:5px; 59 | border-radius:5px; 60 | -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 61 | -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 62 | box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 63 | filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); 64 | } 65 | .menu-item-disabled{ 66 | opacity:0.5; 67 | filter:alpha(opacity=50); 68 | cursor:default; 69 | } 70 | .menu-active-disabled{ 71 | border-color:#d3d3d3; 72 | } 73 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:transparent; 17 | border:1px solid #d3d3d3; 18 | _padding:0px 5px 0px 0px; 19 | -moz-border-radius:3px; 20 | -webkit-border-radius:3px; 21 | border-radius:3px; 22 | } 23 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ccc; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination td{ 9 | border:0; 10 | } 11 | .pagination-btn-separator{ 12 | float:left; 13 | height:24px; 14 | border-left:1px solid #ccc; 15 | border-right:1px solid #fff; 16 | margin:3px 1px; 17 | } 18 | .pagination-num{ 19 | border:1px solid #ccc; 20 | margin:0 2px; 21 | } 22 | .pagination-page-list{ 23 | margin:0px 6px; 24 | } 25 | .pagination-info{ 26 | float:right; 27 | padding-right:6px; 28 | padding-top:8px; 29 | font-size:12px; 30 | } 31 | .pagination span{ 32 | font-size:12px; 33 | } 34 | .pagination-first{ 35 | background:url('images/pagination_first.gif') no-repeat; 36 | } 37 | .pagination-prev{ 38 | background:url('images/pagination_prev.gif') no-repeat; 39 | } 40 | .pagination-next{ 41 | background:url('images/pagination_next.gif') no-repeat; 42 | } 43 | .pagination-last{ 44 | background:url('images/pagination_last.gif') no-repeat; 45 | } 46 | .pagination-load{ 47 | background:url('images/pagination_load.png') no-repeat; 48 | } 49 | .pagination-loading{ 50 | background:url('images/pagination_loading.gif') no-repeat; 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/panel.css: -------------------------------------------------------------------------------- 1 | .panel{ 2 | overflow:hidden; 3 | font-size:12px; 4 | } 5 | .panel-header{ 6 | padding:5px; 7 | line-height:15px; 8 | color:#3F3F3F; 9 | font-weight:bold; 10 | font-size:12px; 11 | background:url('images/panel_title.gif') repeat-x; 12 | position:relative; 13 | border:1px solid #D3D3D3; 14 | } 15 | .panel-title{ 16 | background:url('images/blank.gif') no-repeat; 17 | } 18 | .panel-header-noborder{ 19 | border-width:0px; 20 | border-bottom:1px solid #D3D3D3; 21 | } 22 | .panel-body{ 23 | overflow:auto; 24 | border:1px solid #D3D3D3; 25 | border-top-width:0px; 26 | } 27 | .panel-body-noheader{ 28 | border-top-width:1px; 29 | } 30 | .panel-body-noborder{ 31 | border-width:0px; 32 | } 33 | .panel-with-icon{ 34 | padding-left:18px; 35 | } 36 | .panel-icon{ 37 | position:absolute; 38 | left:5px; 39 | top:4px; 40 | width:16px; 41 | height:16px; 42 | } 43 | 44 | .panel-tool{ 45 | position:absolute; 46 | right:5px; 47 | top:4px; 48 | } 49 | .panel-tool a{ 50 | display:inline-block; 51 | width:16px; 52 | height:16px; 53 | opacity:0.6; 54 | filter:alpha(opacity=60); 55 | margin-left:2px; 56 | } 57 | .panel-tool a:hover{ 58 | opacity:1; 59 | filter:alpha(opacity=100); 60 | } 61 | .panel-tool-close{ 62 | background:url('images/panel_tools.gif') no-repeat -16px 0px; 63 | } 64 | .panel-tool-min{ 65 | background:url('images/panel_tools.gif') no-repeat 0px 0px; 66 | } 67 | .panel-tool-max{ 68 | background:url('images/panel_tools.gif') no-repeat 0px -16px; 69 | } 70 | .panel-tool-restore{ 71 | background:url('images/panel_tools.gif') no-repeat -16px -16px; 72 | } 73 | .panel-tool-collapse{ 74 | background:url('images/panel_tools.gif') no-repeat -32px 0; 75 | } 76 | .panel-tool-expand{ 77 | background:url('images/panel_tools.gif') no-repeat -32px -16px; 78 | } 79 | .panel-loading{ 80 | padding:11px 0px 10px 30px; 81 | background:url('images/panel_loading.gif') no-repeat 10px 10px; 82 | } 83 | .panel-noscroll{ 84 | overflow:hidden; 85 | } 86 | .panel-fit,.panel-fit body{ 87 | height:100%; 88 | margin:0; 89 | padding:0; 90 | border:0; 91 | overflow:hidden; 92 | } 93 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #D3D3D3; 3 | border-radius:5px; 4 | overflow:hidden; 5 | } 6 | .progressbar-text{ 7 | text-align:center; 8 | color:#3F3F3F; 9 | position:absolute; 10 | } 11 | .progressbar-value{ 12 | background-color:#eee; 13 | border-radius:5px 0 0 5px; 14 | width:0; 15 | } 16 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 .datagrid-body,.propertygrid .datagrid-group{ 2 | background:#fafafa; 3 | } 4 | .propertygrid .datagrid-group{ 5 | height:21px; 6 | overflow:hidden; 7 | } 8 | .propertygrid .datagrid-view1 .datagrid-body td{ 9 | border-color:#fafafa; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 12 | background:#fafafa; 13 | } 14 | .propertygrid .datagrid-group span{ 15 | color:#3F3F3F; 16 | font-weight:bold; 17 | padding-left:4px; 18 | } 19 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 20 | background-position:3px center; 21 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #d3d3d3; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/searchbox_button.png') no-repeat center center; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | background-color:#efefef; 42 | height:20px; 43 | border:0; 44 | padding:0 6px 0 0; 45 | vertical-align:top; 46 | } 47 | .searchbox a.l-btn .l-btn-left{ 48 | padding:2px 0 2px 2px; 49 | } 50 | .searchbox a.l-btn-plain:hover{ 51 | -moz-border-radius:0px; 52 | -webkit-border-radius:0px; 53 | border-radius:0px; 54 | border:0; 55 | padding:0 6px 0 0; 56 | } 57 | .searchbox a.m-btn-plain-active{ 58 | -moz-border-radius:0px; 59 | -webkit-border-radius:0px; 60 | border-radius:0px; 61 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/slider.css: -------------------------------------------------------------------------------- 1 | .slider{ 2 | } 3 | .slider-disabled{ 4 | opacity:0.5; 5 | filter:alpha(opacity=50); 6 | } 7 | .slider-h{ 8 | height:22px; 9 | } 10 | .slider-v{ 11 | width:22px; 12 | } 13 | .slider-inner{ 14 | position:relative; 15 | height:6px; 16 | top:7px; 17 | border:1px solid #D3D3D3; 18 | background:#fafafa; 19 | border-radius:3px; 20 | } 21 | .slider-handle{ 22 | position:absolute; 23 | display:block; 24 | outline:none; 25 | width:20px; 26 | height:20px; 27 | top:-7px; 28 | margin-left:-10px; 29 | background:url('images/slider_handle.png') no-repeat; 30 | } 31 | .slider-tip{ 32 | position:absolute; 33 | display:inline-block; 34 | line-height:12px; 35 | white-space:nowrap; 36 | top:-22px; 37 | } 38 | .slider-rule{ 39 | position:relative; 40 | top:15px; 41 | } 42 | .slider-rule span{ 43 | position:absolute; 44 | display:inline-block; 45 | font-size:0; 46 | height:5px; 47 | border-left:1px solid #999; 48 | } 49 | .slider-rulelabel{ 50 | position:relative; 51 | top:20px; 52 | } 53 | .slider-rulelabel span{ 54 | position:absolute; 55 | display:inline-block; 56 | color:#999; 57 | } 58 | .slider-v .slider-inner{ 59 | width:6px; 60 | left:7px; 61 | top:0; 62 | float:left; 63 | } 64 | .slider-v .slider-handle{ 65 | left:3px; 66 | margin-top:-10px; 67 | } 68 | .slider-v .slider-tip{ 69 | left:-10px; 70 | margin-top:-6px; 71 | } 72 | .slider-v .slider-rule{ 73 | float:left; 74 | top:0; 75 | left:16px; 76 | } 77 | .slider-v .slider-rule span{ 78 | width:5px; 79 | height:'auto'; 80 | border-left:0; 81 | border-top:1px solid #999; 82 | } 83 | .slider-v .slider-rulelabel{ 84 | float:left; 85 | top:0; 86 | left:23px; 87 | } 88 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/spinner.css: -------------------------------------------------------------------------------- 1 | .spinner{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #d3d3d3; 8 | } 9 | .spinner-text{ 10 | font-size:12px; 11 | border:0px; 12 | line-height:20px; 13 | height:20px; 14 | padding:0px; 15 | *height:18px; 16 | *line-height:18px; 17 | _height:18px; 18 | _line-height:18px; 19 | } 20 | .spinner-arrow{ 21 | display:inline-block; 22 | vertical-align:top; 23 | margin:0; 24 | padding:0; 25 | } 26 | .spinner-arrow-up,.spinner-arrow-down{ 27 | display:block; 28 | background:#E0ECF9 url('images/spinner_arrow_up.gif') no-repeat 5px 2px; 29 | font-size:1px; 30 | width:18px; 31 | height:10px; 32 | } 33 | .spinner-arrow-down{ 34 | background:#E0ECF9 url('images/spinner_arrow_down.gif') no-repeat 5px 3px; 35 | } 36 | .spinner-arrow-hover{ 37 | background-color:#ECF9F9; 38 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:transparent; 24 | border:1px solid #d3d3d3; 25 | _padding:0px 5px 0px 0px; 26 | -moz-border-radius:3px; 27 | -webkit-border-radius:3px; 28 | border-radius:3px; 29 | } 30 | a.s-btn-plain-active .s-btn-downarrow{ 31 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 32 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:10px; 16 | padding:3px 5px; 17 | border:1px solid #CC9933; 18 | background:#FFFFCC; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | background:url('images/validatebox_pointer.gif') no-repeat left top; 24 | display:inline-block; 25 | width:10px; 26 | height:19px; 27 | position:absolute; 28 | left:1px; 29 | top:0px; 30 | z-index:9900002; 31 | } 32 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/gray/window.css: -------------------------------------------------------------------------------- 1 | .window { 2 | font-size:12px; 3 | position:absolute; 4 | overflow:hidden; 5 | background:#eee url('images/panel_title.gif') repeat-x; 6 | padding:5px; 7 | border:1px solid #D3D3D3; 8 | border-radius:5px; 9 | -moz-border-radius:5px; 10 | -webkit-border-radius:5px; 11 | border-radius:5px; 12 | } 13 | .window-shadow{ 14 | position:absolute; 15 | background:#ddd; 16 | border-radius:5px; 17 | -moz-border-radius:5px; 18 | -webkit-border-radius:5px; 19 | border-radius:5px; 20 | -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 21 | -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 22 | box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); 23 | filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); 24 | } 25 | .window .window-header{ 26 | background:transparent; 27 | padding:2px 0px 4px 0px; 28 | } 29 | .window .window-body{ 30 | background:#fff; 31 | border:1px solid #D3D3D3; 32 | border-top-width:0px; 33 | } 34 | .window .window-body-noheader{ 35 | border-top-width:1px; 36 | } 37 | .window .window-header .panel-icon{ 38 | left:1px; 39 | top:1px; 40 | } 41 | .window .window-header .panel-with-icon{ 42 | padding-left:18px; 43 | } 44 | .window .window-header .panel-tool{ 45 | top:0px; 46 | right:1px; 47 | } 48 | .window-proxy{ 49 | position:absolute; 50 | overflow:hidden; 51 | border:1px dashed #3F3F3F; 52 | } 53 | .window-proxy-mask{ 54 | position:absolute; 55 | background:#fafafa; 56 | filter:alpha(opacity=10); 57 | opacity:0.10; 58 | } 59 | .window-mask{ 60 | position:absolute; 61 | left:0; 62 | top:0; 63 | width:100%; 64 | height:100%; 65 | filter:alpha(opacity=40); 66 | opacity:0.40; 67 | background:#ccc; 68 | font-size:1px; 69 | *zoom:1; 70 | overflow:hidden; 71 | } 72 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icon.css: -------------------------------------------------------------------------------- 1 | .icon-blank{ 2 | background:url('icons/blank.gif') no-repeat; 3 | } 4 | .icon-add{ 5 | background:url('icons/edit_add.png') no-repeat; 6 | } 7 | .icon-edit{ 8 | background:url('icons/pencil.png') no-repeat; 9 | } 10 | .icon-remove{ 11 | background:url('icons/edit_remove.png') no-repeat; 12 | } 13 | .icon-save{ 14 | background:url('icons/filesave.png') no-repeat; 15 | } 16 | .icon-cut{ 17 | background:url('icons/cut.png') no-repeat; 18 | } 19 | .icon-ok{ 20 | background:url('icons/ok.png') no-repeat; 21 | } 22 | .icon-no{ 23 | background:url('icons/no.png') no-repeat; 24 | } 25 | .icon-cancel{ 26 | background:url('icons/cancel.png') no-repeat; 27 | } 28 | .icon-reload{ 29 | background:url('icons/reload.png') no-repeat; 30 | } 31 | .icon-search{ 32 | background:url('icons/search.png') no-repeat; 33 | } 34 | .icon-print{ 35 | background:url('icons/print.png') no-repeat; 36 | } 37 | .icon-help{ 38 | background:url('icons/help.png') no-repeat; 39 | } 40 | .icon-undo{ 41 | background:url('icons/undo.png') no-repeat; 42 | } 43 | .icon-redo{ 44 | background:url('icons/redo.png') no-repeat; 45 | } 46 | .icon-back{ 47 | background:url('icons/back.png') no-repeat; 48 | } 49 | .icon-sum{ 50 | background:url('icons/sum.png') no-repeat; 51 | } 52 | .icon-tip{ 53 | background:url('icons/tip.png') no-repeat; 54 | } 55 | 56 | .icon-mini-add{ 57 | background:url('icons/mini_add.png') no-repeat 2px 2px; 58 | } 59 | .icon-mini-edit{ 60 | background:url('icons/mini_edit.png') no-repeat 2px 2px; 61 | } 62 | .icon-mini-refresh{ 63 | background:url('icons/mini_refresh.png') no-repeat 3px 2px; 64 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/back.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/blank.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/cancel.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/cut.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/edit_add.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/filesave.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/help.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/mini_add.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/no.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/ok.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/pencil.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/print.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/redo.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/reload.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/search.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/sum.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/tip.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/icons/undo.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/accordion.css: -------------------------------------------------------------------------------- 1 | .accordion{ 2 | background:#fff; 3 | overflow:hidden; 4 | border:1px solid #ddd; 5 | } 6 | .accordion .accordion-header{ 7 | border-width:0 0 1px; 8 | cursor:pointer; 9 | } 10 | .accordion .accordion-body{ 11 | border-width:0 0 1px; 12 | } 13 | .accordion .accordion-header .panel-title{ 14 | font-weight:normal; 15 | } 16 | .accordion .accordion-header-selected .panel-title{ 17 | font-weight:bold; 18 | } 19 | .accordion-noborder{ 20 | border-width:0; 21 | } 22 | .accordion-noborder .accordion-header{ 23 | border-width:0 0 1px; 24 | } 25 | .accordion-noborder .accordion-body{ 26 | border-width:0 0 1px; 27 | } 28 | .accordion-collapse{ 29 | background:url('images/accordion_collapse.png') no-repeat; 30 | } 31 | .accordion-expand{ 32 | background:url('images/accordion_expand.png') no-repeat; 33 | } 34 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/combo.css: -------------------------------------------------------------------------------- 1 | .combo{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #ddd; 8 | background:#fff; 9 | } 10 | .combo-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .combo-arrow{ 22 | background: url('images/combo_arrow.gif') no-repeat 3px 4px; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .combo-arrow-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | background-color:#E6E6E6; 36 | } 37 | .combo-panel{ 38 | background:#fff; 39 | overflow:auto; 40 | } 41 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/combobox.css: -------------------------------------------------------------------------------- 1 | .combobox-item{ 2 | padding:2px; 3 | font-size:12px; 4 | padding:3px; 5 | padding-right:0px; 6 | color:#777; 7 | } 8 | .combobox-item-hover{ 9 | background:#E6E6E6; 10 | color:#000; 11 | } 12 | .combobox-item-selected{ 13 | background:#EAF4F9; 14 | color:#000; 15 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/datebox.css: -------------------------------------------------------------------------------- 1 | .datebox .combo-arrow{ 2 | background:url('images/datebox_arrow.png') no-repeat center center; 3 | } 4 | .datebox-calendar-inner{ 5 | height:180px; 6 | } 7 | .datebox-button{ 8 | height:18px; 9 | padding:2px 5px; 10 | font-size:12px; 11 | text-align:center; 12 | } 13 | .datebox-current,.datebox-close{ 14 | float:left; 15 | color:#777; 16 | text-decoration:none; 17 | font-weight:bold; 18 | } 19 | .datebox-close{ 20 | float:right; 21 | } 22 | .datebox-ok{ 23 | color:#777; 24 | text-decoration:none; 25 | font-weight:bold; 26 | } 27 | .datebox-button-hover{ 28 | color:#333; 29 | } 30 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/dialog.css: -------------------------------------------------------------------------------- 1 | .dialog-content{ 2 | overflow:auto; 3 | } 4 | .dialog-toolbar{ 5 | padding:2px 5px; 6 | border-bottom:1px solid #ddd; 7 | } 8 | .dialog-tool-separator{ 9 | float:left; 10 | height:24px; 11 | border-left:1px solid #ccc; 12 | border-right:1px solid #fff; 13 | margin:2px 1px; 14 | } 15 | .dialog-button{ 16 | border-top:1px solid #ddd; 17 | padding:5px 5px; 18 | text-align:right; 19 | } 20 | .dialog-button .l-btn{ 21 | margin-left:5px; 22 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/accordion_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/accordion_collapse.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/accordion_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/accordion_expand.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/calendar_nextmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/calendar_nextmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/calendar_nextyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/calendar_nextyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/calendar_prevmonth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/calendar_prevmonth.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/calendar_prevyear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/calendar_prevyear.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/combo_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/combo_arrow.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/datagrid_row_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/datagrid_row_collapse.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/datagrid_row_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/datagrid_row_expand.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/datagrid_sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/datagrid_sort_asc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/datagrid_sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/datagrid_sort_desc.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/menu_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/menu_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/menu_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/menu_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/menu_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/menu_sep.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/menu_split_downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/menu_split_downarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/messager_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/messager_error.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/messager_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/messager_info.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/messager_question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/messager_question.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/messager_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/messager_warning.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_first.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_last.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_load.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_next.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/pagination_prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/pagination_prev.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/panel_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/panel_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/panel_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/panel_tools.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tabs_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tabs_close.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tabs_leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tabs_leftarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tabs_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tabs_rightarrow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_arrows.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_0.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_1.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_checkbox_2.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_dnd_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_dnd_no.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_dnd_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_dnd_yes.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_elbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_elbow.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_file.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_folder.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_folder_open.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/tree_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/tree_loading.gif -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beau-zihan/EasyUI1.3Doc-CN/3922f0a460bc1ee36cfff278406ecd8cbbf2f3c3/jquery-easyui-1.3.1/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/layout.css: -------------------------------------------------------------------------------- 1 | .layout{ 2 | position:relative; 3 | overflow:hidden; 4 | margin:0; 5 | padding:0; 6 | z-index:0; 7 | } 8 | .layout-panel{ 9 | position:absolute; 10 | overflow:hidden; 11 | } 12 | .layout-panel-east,.layout-panel-west{ 13 | z-index:2; 14 | } 15 | .layout-panel-north,.layout-panel-south{ 16 | z-index:3; 17 | } 18 | .layout-button-up{ 19 | background:url('images/layout_arrows.png') no-repeat -16px -16px; 20 | } 21 | .layout-button-down{ 22 | background:url('images/layout_arrows.png') no-repeat -16px 0; 23 | } 24 | .layout-button-left{ 25 | background:url('images/layout_arrows.png') no-repeat 0 0; 26 | } 27 | .layout-button-right{ 28 | background:url('images/layout_arrows.png') no-repeat 0 -16px; 29 | } 30 | .layout-expand{ 31 | position:absolute; 32 | padding:0px 5px; 33 | padding:0px; 34 | background:#ddd; 35 | font-size:1px; 36 | cursor:pointer; 37 | z-index:1; 38 | } 39 | .layout-expand .panel-header{ 40 | background:transparent; 41 | border-bottom-width:0px; 42 | } 43 | .layout-expand .panel-header .panel-tool{ 44 | top: 5px; 45 | } 46 | .layout-expand .panel-body{ 47 | overflow:hidden; 48 | } 49 | .layout-expand-over{ 50 | background:#E6E6E6; 51 | } 52 | .layout-body{ 53 | overflow:auto; 54 | background:#fff; 55 | } 56 | .layout-split-proxy-h{ 57 | position:absolute; 58 | width:5px; 59 | background:#E6E6E6; 60 | font-size:1px; 61 | cursor:e-resize; 62 | display:none; 63 | z-index:5; 64 | } 65 | .layout-split-proxy-v{ 66 | position:absolute; 67 | height:5px; 68 | background:#E6E6E6; 69 | font-size:1px; 70 | cursor:n-resize; 71 | display:none; 72 | z-index:5; 73 | } 74 | .layout-split-north{ 75 | border-bottom:5px solid #ddd; 76 | } 77 | .layout-split-south{ 78 | border-top:5px solid #ddd; 79 | } 80 | .layout-split-east{ 81 | border-left:5px solid #ddd; 82 | } 83 | .layout-split-west{ 84 | border-right:5px solid #ddd; 85 | } 86 | .layout-mask{ 87 | position:absolute; 88 | background:#fafafa; 89 | filter:alpha(opacity=10); 90 | opacity:0.10; 91 | z-index:4; 92 | } 93 | 94 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/linkbutton.css: -------------------------------------------------------------------------------- 1 | a.l-btn{ 2 | color:#777; 3 | font-size:12px; 4 | text-decoration:none; 5 | display:inline-block; 6 | zoom:1; 7 | height:24px; 8 | padding-right:18px; 9 | cursor:pointer; 10 | outline:none; 11 | border:1px solid #ddd; 12 | } 13 | a.l-btn-plain{ 14 | background:transparent; 15 | padding-right:5px; 16 | border:1px solid transparent; 17 | _border:0px solid #ddd; 18 | _padding:1px 6px 1px 1px; 19 | } 20 | 21 | a.l-btn-disabled{ 22 | color:#ccc; 23 | opacity:0.5; 24 | filter:alpha(opacity=50); 25 | cursor:default; 26 | } 27 | a.l-btn span.l-btn-left{ 28 | display:inline-block; 29 | padding:4px 0px 4px 18px; 30 | line-height:16px; 31 | height:16px; 32 | } 33 | a.l-btn-plain span.l-btn-left{ 34 | background:transparent; 35 | padding-left:5px; 36 | } 37 | 38 | a.l-btn span span.l-btn-text{ 39 | display:inline-block; 40 | height:16px; 41 | line-height:16px; 42 | padding:0px; 43 | } 44 | a.l-btn span span span.l-btn-empty{ 45 | display:inline-block; 46 | padding:0px; 47 | width:16px; 48 | } 49 | a:hover.l-btn{ 50 | outline:none; 51 | background-color:#ddd; 52 | } 53 | a:hover.l-btn-plain{ 54 | border:1px solid #ddd; 55 | _padding:0px 5px 0px 0px; 56 | } 57 | a:hover.l-btn-disabled{ 58 | background:transparent; 59 | } 60 | a.l-btn .l-btn-focus{ 61 | outline:#0000FF dotted thin; 62 | } 63 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/menu.css: -------------------------------------------------------------------------------- 1 | .menu{ 2 | position:absolute; 3 | background:#fff; 4 | margin:0; 5 | padding:2px; 6 | border:1px solid #ddd; 7 | overflow:hidden; 8 | } 9 | .menu-item{ 10 | position:relative; 11 | margin:0; 12 | padding:0; 13 | height:22px; 14 | line-height:20px; 15 | overflow:hidden; 16 | font-size:12px; 17 | cursor:pointer; 18 | border:1px solid #fff; 19 | } 20 | .menu-text{ 21 | position:absolute; 22 | left:28px; 23 | top:0px; 24 | } 25 | .menu-icon{ 26 | position:absolute; 27 | width:16px; 28 | height:16px; 29 | top:3px; 30 | left:2px; 31 | } 32 | .menu-rightarrow{ 33 | position: absolute; 34 | width:4px; 35 | height:7px; 36 | top:7px; 37 | right:5px; 38 | background:url('images/menu_rightarrow.png') no-repeat; 39 | } 40 | .menu-sep{ 41 | margin:3px 0 3px; 42 | line-height:2px; 43 | font-size:2px; 44 | background:url('images/menu_sep.png') repeat-x; 45 | } 46 | .menu-active{ 47 | border:1px solid #ddd; 48 | background:#E6E6E6; 49 | } 50 | .menu-item-disabled{ 51 | opacity:0.5; 52 | filter:alpha(opacity=50); 53 | cursor:default; 54 | } 55 | .menu-active-disabled{ 56 | border-color:#ddd; 57 | } 58 | 59 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/menubutton.css: -------------------------------------------------------------------------------- 1 | .m-btn-downarrow{ 2 | display:inline-block; 3 | width:12px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 4px center; 7 | } 8 | 9 | a.m-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.m-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.m-btn-plain-active{ 16 | background:transparent; 17 | border:1px solid #ddd; 18 | _padding:0px 5px 0px 0px; 19 | } 20 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/messager.css: -------------------------------------------------------------------------------- 1 | .messager-body{ 2 | padding:5px 10px; 3 | } 4 | .messager-button{ 5 | text-align:center; 6 | padding-top:10px; 7 | } 8 | .messager-icon{ 9 | float:left; 10 | width:47px; 11 | height:35px; 12 | } 13 | .messager-error{ 14 | background:url('images/messager_error.gif') no-repeat scroll left top; 15 | } 16 | .messager-info{ 17 | background:url('images/messager_info.gif') no-repeat scroll left top; 18 | } 19 | .messager-question{ 20 | background:url('images/messager_question.gif') no-repeat scroll left top; 21 | } 22 | .messager-warning{ 23 | background:url('images/messager_warning.gif') no-repeat scroll left top; 24 | } 25 | .messager-input{ 26 | width: 262px; 27 | border:1px solid #ddd; 28 | } 29 | .messager-progress{ 30 | padding:10px; 31 | } 32 | .messager-p-msg{ 33 | margin-bottom:5px; 34 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/pagination.css: -------------------------------------------------------------------------------- 1 | .pagination{ 2 | zoom:1; 3 | } 4 | .pagination table{ 5 | float:left; 6 | height:30px; 7 | } 8 | .pagination td{ 9 | border:0; 10 | } 11 | .pagination-btn-separator{ 12 | float:left; 13 | height:24px; 14 | border-left:1px solid #ccc; 15 | border-right:1px solid #fff; 16 | margin:3px 1px; 17 | } 18 | .pagination-num{ 19 | border:1px solid #ddd; 20 | margin:0 2px; 21 | } 22 | .pagination-page-list{ 23 | margin:0px 6px; 24 | } 25 | .pagination-info{ 26 | float:right; 27 | padding-right:6px; 28 | padding-top:8px; 29 | font-size:12px; 30 | } 31 | .pagination span{ 32 | font-size:12px; 33 | } 34 | .pagination-first{ 35 | background:url('images/pagination_first.gif') no-repeat; 36 | } 37 | .pagination-prev{ 38 | background:url('images/pagination_prev.gif') no-repeat; 39 | } 40 | .pagination-next{ 41 | background:url('images/pagination_next.gif') no-repeat; 42 | } 43 | .pagination-last{ 44 | background:url('images/pagination_last.gif') no-repeat; 45 | } 46 | .pagination-load{ 47 | background:url('images/pagination_load.png') no-repeat; 48 | } 49 | .pagination-loading{ 50 | background:url('images/pagination_loading.gif') no-repeat; 51 | } 52 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/panel.css: -------------------------------------------------------------------------------- 1 | .panel{ 2 | overflow:hidden; 3 | font-size:12px; 4 | } 5 | .panel-header{ 6 | padding:5px; 7 | line-height:15px; 8 | color:#777; 9 | background:#fff; 10 | font-weight:bold; 11 | font-size:12px; 12 | position:relative; 13 | border:1px solid #ddd; 14 | } 15 | .panel-title{ 16 | background:url('images/blank.gif') no-repeat; 17 | } 18 | .panel-header-noborder{ 19 | border-width:0px; 20 | border-bottom:1px solid #ddd; 21 | } 22 | .panel-body{ 23 | overflow:auto; 24 | border:1px solid #ddd; 25 | border-top-width:0px; 26 | } 27 | .panel-body-noheader{ 28 | border-top-width:1px; 29 | } 30 | .panel-body-noborder{ 31 | border-width:0px; 32 | } 33 | .panel-with-icon{ 34 | padding-left:18px; 35 | } 36 | .panel-icon{ 37 | position:absolute; 38 | left:5px; 39 | top:4px; 40 | width:16px; 41 | height:16px; 42 | } 43 | .panel-tool{ 44 | position:absolute; 45 | right:5px; 46 | top:4px; 47 | } 48 | .panel-tool a{ 49 | display:inline-block; 50 | width:16px; 51 | height:16px; 52 | opacity:0.6; 53 | filter:alpha(opacity=60); 54 | margin-left:2px; 55 | } 56 | .panel-tool a:hover{ 57 | opacity:1; 58 | filter:alpha(opacity=100); 59 | background-color:#ddd; 60 | } 61 | .panel-tool-close{ 62 | background:url('images/panel_tools.gif') no-repeat -16px 0px; 63 | } 64 | .panel-tool-min{ 65 | background:url('images/panel_tools.gif') no-repeat 0px 0px; 66 | } 67 | .panel-tool-max{ 68 | background:url('images/panel_tools.gif') no-repeat 0px -16px; 69 | } 70 | .panel-tool-restore{ 71 | background:url('images/panel_tools.gif') no-repeat -16px -16px; 72 | } 73 | .panel-tool-collapse{ 74 | background:url('images/panel_tools.gif') no-repeat -32px 0; 75 | } 76 | .panel-tool-expand{ 77 | background:url('images/panel_tools.gif') no-repeat -32px -16px; 78 | } 79 | .panel-loading{ 80 | padding:11px 0px 10px 30px; 81 | background:url('images/panel_loading.gif') no-repeat 10px 10px; 82 | } 83 | .panel-noscroll{ 84 | overflow:hidden; 85 | } 86 | .panel-fit,.panel-fit body{ 87 | height:100%; 88 | margin:0; 89 | padding:0; 90 | border:0; 91 | overflow:hidden; 92 | } 93 | 94 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/progressbar.css: -------------------------------------------------------------------------------- 1 | .progressbar{ 2 | border:1px solid #ddd; 3 | overflow:hidden; 4 | } 5 | .progressbar-text{ 6 | text-align:center; 7 | color:#777; 8 | position:absolute; 9 | } 10 | .progressbar-value{ 11 | background-color:#E6E6E6; 12 | width:0; 13 | } 14 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/propertygrid.css: -------------------------------------------------------------------------------- 1 | .propertygrid .datagrid-view1 table.datagrid-btable{ 2 | border-top:1px dotted #fff; 3 | } 4 | .propertygrid .datagrid-view2 table.datagrid-btable{ 5 | border-top:1px dotted #ddd; 6 | } 7 | .propertygrid .datagrid-group{ 8 | height:21px; 9 | overflow:hidden; 10 | } 11 | .propertygrid .datagrid-view1 .datagrid-body td{ 12 | border-color:#fff; 13 | border-right:1px dotted #ddd; 14 | } 15 | .propertygrid .datagrid-view1 .datagrid-row-over,.propertygrid .datagrid-view1 .datagrid-row-selected{ 16 | background:#fff; 17 | } 18 | .propertygrid .datagrid-group span{ 19 | color:#777; 20 | font-weight:bold; 21 | padding-left:4px; 22 | } 23 | .propertygrid .datagrid-row-collapse,.propertygrid .datagrid-row-expand{ 24 | background-position:3px center; 25 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/searchbox.css: -------------------------------------------------------------------------------- 1 | .searchbox{ 2 | display:inline-block; 3 | white-space:nowrap; 4 | font-size:12px; 5 | margin:0; 6 | padding:0; 7 | border:1px solid #ddd; 8 | background:#fff; 9 | } 10 | .searchbox-text{ 11 | font-size:12px; 12 | border:0px; 13 | line-height:20px; 14 | height:20px; 15 | padding:0px; 16 | *height:18px; 17 | *line-height:18px; 18 | _height:18px; 19 | _line-height:18px; 20 | } 21 | .searchbox-button{ 22 | background:url('images/searchbox_button.png') no-repeat center center; 23 | width:18px; 24 | height:20px; 25 | overflow:hidden; 26 | display:inline-block; 27 | vertical-align:top; 28 | cursor:pointer; 29 | opacity:0.6; 30 | filter:alpha(opacity=60); 31 | } 32 | .searchbox-button-hover{ 33 | opacity:1.0; 34 | filter:alpha(opacity=100); 35 | } 36 | .searchbox-prompt{ 37 | font-size:12px; 38 | color:#ccc; 39 | } 40 | .searchbox a.l-btn-plain{ 41 | height:20px; 42 | border:0; 43 | padding:0 6px 0 0; 44 | vertical-align:top; 45 | } 46 | .searchbox a.l-btn .l-btn-left{ 47 | padding:2px 0 2px 2px; 48 | } 49 | .searchbox a.l-btn-plain:hover{ 50 | -moz-border-radius:0px; 51 | -webkit-border-radius:0px; 52 | border-radius:0px; 53 | border:0; 54 | padding:0 6px 0 0; 55 | } 56 | .searchbox a.m-btn-plain-active{ 57 | -moz-border-radius:0px; 58 | -webkit-border-radius:0px; 59 | border-radius:0px; 60 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/slider.css: -------------------------------------------------------------------------------- 1 | .slider{ 2 | } 3 | .slider-disabled{ 4 | opacity:0.5; 5 | filter:alpha(opacity=50); 6 | } 7 | .slider-h{ 8 | height:22px; 9 | } 10 | .slider-v{ 11 | width:22px; 12 | } 13 | .slider-inner{ 14 | position:relative; 15 | height:6px; 16 | top:7px; 17 | border:1px solid #ddd; 18 | } 19 | .slider-handle{ 20 | position:absolute; 21 | display:block; 22 | outline:none; 23 | width:20px; 24 | height:20px; 25 | top:-7px; 26 | margin-left:-10px; 27 | background:url('images/slider_handle.png') no-repeat; 28 | } 29 | .slider-tip{ 30 | position:absolute; 31 | display:inline-block; 32 | line-height:12px; 33 | white-space:nowrap; 34 | top:-22px; 35 | } 36 | .slider-rule{ 37 | position:relative; 38 | top:15px; 39 | } 40 | .slider-rule span{ 41 | position:absolute; 42 | display:inline-block; 43 | font-size:0; 44 | height:5px; 45 | border-left:1px solid #777; 46 | } 47 | .slider-rulelabel{ 48 | position:relative; 49 | top:20px; 50 | } 51 | .slider-rulelabel span{ 52 | position:absolute; 53 | display:inline-block; 54 | color:#777; 55 | } 56 | .slider-v .slider-inner{ 57 | width:6px; 58 | left:7px; 59 | top:0; 60 | float:left; 61 | } 62 | .slider-v .slider-handle{ 63 | left:3px; 64 | margin-top:-10px; 65 | } 66 | .slider-v .slider-tip{ 67 | left:-10px; 68 | margin-top:-6px; 69 | } 70 | .slider-v .slider-rule{ 71 | float:left; 72 | top:0; 73 | left:16px; 74 | } 75 | .slider-v .slider-rule span{ 76 | width:5px; 77 | height:'auto'; 78 | border-left:0; 79 | border-top:1px solid #777; 80 | } 81 | .slider-v .slider-rulelabel{ 82 | float:left; 83 | top:0; 84 | left:23px; 85 | } 86 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- 1 | .s-btn-downarrow{ 2 | display:inline-block; 3 | width:16px; 4 | line-height:14px; 5 | *line-height:15px; 6 | background:url('images/menu_downarrow.png') no-repeat 9px center; 7 | } 8 | 9 | a.s-btn-active{ 10 | background-position: bottom right; 11 | } 12 | a.s-btn-active span.l-btn-left{ 13 | background-position: bottom left; 14 | } 15 | a.s-btn-active .s-btn-downarrow{ 16 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 17 | } 18 | a:hover.l-btn .s-btn-downarrow{ 19 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 20 | } 21 | 22 | a.s-btn-plain-active{ 23 | background:transparent; 24 | border:1px solid #ddd; 25 | _padding:0px 5px 0px 0px; 26 | } 27 | a.s-btn-plain-active .s-btn-downarrow{ 28 | background:url('images/menu_split_downarrow.png') no-repeat 4px -19px; 29 | } -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/validatebox.css: -------------------------------------------------------------------------------- 1 | .validatebox-invalid{ 2 | background:#FFFFEE url('images/validatebox_warning.png') no-repeat right 1px; 3 | } 4 | .validatebox-tip{ 5 | position:absolute; 6 | width:200px; 7 | height:auto; 8 | display:none; 9 | z-index:9900000; 10 | } 11 | .validatebox-tip-content{ 12 | display:inline-block; 13 | position:absolute; 14 | top:0px; 15 | left:2px; 16 | padding:3px 5px; 17 | border:1px solid #ddd; 18 | background:#fff; 19 | z-index:9900001; 20 | font-size:12px; 21 | } 22 | .validatebox-tip-pointer{ 23 | display:inline-block; 24 | width:10px; 25 | height:19px; 26 | position:absolute; 27 | left:1px; 28 | top:0px; 29 | z-index:9900002; 30 | } 31 | -------------------------------------------------------------------------------- /jquery-easyui-1.3.1/themes/metro/window.css: -------------------------------------------------------------------------------- 1 | .window { 2 | font-size:12px; 3 | position:absolute; 4 | overflow:hidden; 5 | background:#fff; 6 | padding:5px; 7 | border:1px solid #ddd; 8 | } 9 | .window-shadow{ 10 | position:absolute; 11 | background:transparent; 12 | } 13 | .window .window-header{ 14 | background:transparent; 15 | padding:2px 0px 4px 0px; 16 | } 17 | .window .window-body{ 18 | background:#fff; 19 | border:1px solid #ddd; 20 | border-top-width:0px; 21 | } 22 | .window .window-body-noheader{ 23 | border-top-width:1px; 24 | } 25 | .window .window-header .panel-icon{ 26 | left:1px; 27 | top:1px; 28 | } 29 | .window .window-header .panel-with-icon{ 30 | padding-left:18px; 31 | } 32 | .window .window-header .panel-tool{ 33 | top:0px; 34 | right:1px; 35 | } 36 | .window-proxy{ 37 | position:absolute; 38 | overflow:hidden; 39 | border:1px dashed #777; 40 | } 41 | .window-proxy-mask{ 42 | position:absolute; 43 | background:#fafafa; 44 | filter:alpha(opacity=10); 45 | opacity:0.10; 46 | } 47 | .window-mask{ 48 | position:absolute; 49 | left:0; 50 | top:0; 51 | width:100%; 52 | height:100%; 53 | filter:alpha(opacity=40); 54 | opacity:0.40; 55 | background:#ddd; 56 | font-size:1px; 57 | *zoom:1; 58 | overflow:hidden; 59 | } 60 | -------------------------------------------------------------------------------- /js/bootstrap-transition.js: -------------------------------------------------------------------------------- 1 | /* =================================================== 2 | * bootstrap-transition.js v2.1.1 3 | * http://twitter.github.com/bootstrap/javascript.html#transitions 4 | * =================================================== 5 | * Copyright 2012 Twitter, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * ========================================================== */ 19 | 20 | 21 | !function ($) { 22 | 23 | $(function () { 24 | 25 | "use strict"; // jshint ;_; 26 | 27 | 28 | /* CSS TRANSITION SUPPORT (http://www.modernizr.com/) 29 | * ======================================================= */ 30 | 31 | $.support.transition = (function () { 32 | 33 | var transitionEnd = (function () { 34 | 35 | var el = document.createElement('bootstrap') 36 | , transEndEventNames = { 37 | 'WebkitTransition' : 'webkitTransitionEnd' 38 | , 'MozTransition' : 'transitionend' 39 | , 'OTransition' : 'oTransitionEnd otransitionend' 40 | , 'transition' : 'transitionend' 41 | } 42 | , name 43 | 44 | for (name in transEndEventNames){ 45 | if (el.style[name] !== undefined) { 46 | return transEndEventNames[name] 47 | } 48 | } 49 | 50 | }()) 51 | 52 | return transitionEnd && { 53 | end: transitionEnd 54 | } 55 | 56 | })() 57 | 58 | }) 59 | 60 | }(window.jQuery); --------------------------------------------------------------------------------