实例介绍
注:此项目用IntelliJ IDEA 13.1.3编写,所用到的技术有springMVC注解,,jQuery,jQuery-Easyui,JSON,JS技术,Maven技术,Ajax无刷新登录,注册等等,Mybatis技术,还有导出Excel通用方法,通用类有需要的朋友可以下下来直接使用,以及RestFUL风格增删改查,以及前端各种校验等等。由于此项目编译文件我已删除,下载完了重新编译即可,并且赋有详细注释,sql脚本。编译文件有一百多兆,不便上传
【实例截图】
【核心代码】
xf(2)
└── xf
└── xf
├── demo_db1.sql
└── xf
├── pom.xml
├── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── xf
│ │ ├── controller
│ │ │ ├── DemoController.java
│ │ │ ├── LoginController.java
│ │ │ ├── LoginInteceptor.java
│ │ │ ├── MenuController.java
│ │ │ ├── UserController.java
│ │ │ ├── UserTypeController.java
│ │ │ └── WebContextUtil.java
│ │ ├── dao
│ │ │ ├── MenuDao.java
│ │ │ ├── UserDao.java
│ │ │ └── UserTypeDao.java
│ │ ├── entity
│ │ │ ├── Menu.java
│ │ │ ├── User.java
│ │ │ └── UserType.java
│ │ ├── service
│ │ │ ├── BeanMapper.java
│ │ │ ├── CommonExcelView.java
│ │ │ ├── DemoService.java
│ │ │ ├── MenuService.java
│ │ │ ├── ReportUtils.java
│ │ │ ├── UserService.java
│ │ │ └── UserTypeService.java
│ │ └── util
│ │ ├── BaseEntity.java
│ │ ├── Md5Util.java
│ │ ├── MyBatisRepository.java
│ │ └── PageUtil.java
│ ├── resources
│ │ └── sqlMap
│ │ ├── MenuMapper.xml
│ │ ├── UserMapper.xml
│ │ └── UserTypeMapper.xml
│ └── webapp
│ ├── error
│ │ ├── 404.jsp
│ │ └── 500.jsp
│ ├── index.jsp
│ ├── js
│ │ ├── core.js
│ │ ├── css
│ │ │ ├── base.css
│ │ │ └── common.css
│ │ ├── customValidate.js
│ │ ├── images
│ │ │ ├── button_bg.png
│ │ │ ├── load_bg.jpg
│ │ │ └── loading_page.gif
│ │ ├── jquery-1.3.1.js
│ │ ├── jquery-1.8.3.js
│ │ ├── jquery-1.8.3.min.js
│ │ ├── jquery-easyui-1.2.6
│ │ │ ├── api
│ │ │ │ ├── accordion.html
│ │ │ │ ├── api
│ │ │ │ │ ├── Base
│ │ │ │ │ │ ├── Documentation.html
│ │ │ │ │ │ ├── draggable.html
│ │ │ │ │ │ ├── droppable.html
│ │ │ │ │ │ ├── easyloader.html
│ │ │ │ │ │ ├── pagination.html
│ │ │ │ │ │ ├── parser.html
│ │ │ │ │ │ ├── progressbar.html
│ │ │ │ │ │ ├── resizable.html
│ │ │ │ │ │ └── searchbox.html
│ │ │ │ │ ├── DataGrid and Tree
│ │ │ │ │ │ ├── datagrid.html
│ │ │ │ │ │ ├── propertygrid.html
│ │ │ │ │ │ ├── treegrid.html
│ │ │ │ │ │ └── tree.html
│ │ │ │ │ ├── Form
│ │ │ │ │ │ ├── calendar.html
│ │ │ │ │ │ ├── combobox.html
│ │ │ │ │ │ ├── combogrid.html
│ │ │ │ │ │ ├── combo.html
│ │ │ │ │ │ ├── combotree.html
│ │ │ │ │ │ ├── datebox.html
│ │ │ │ │ │ ├── datetimebox.html
│ │ │ │ │ │ ├── form.html
│ │ │ │ │ │ ├── numberbox.html
│ │ │ │ │ │ ├── numberspinner.html
│ │ │ │ │ │ ├── slider.html
│ │ │ │ │ │ ├── spinner.html
│ │ │ │ │ │ ├── timespinner.html
│ │ │ │ │ │ └── validatebox.html
│ │ │ │ │ ├── Layout
│ │ │ │ │ │ ├── accordion.html
│ │ │ │ │ │ ├── layout.html
│ │ │ │ │ │ ├── panel.html
│ │ │ │ │ │ └── tabs.html
│ │ │ │ │ ├── Menu and Button
│ │ │ │ │ │ ├── linkbutton.html
│ │ │ │ │ │ ├── menubutton.html
│ │ │ │ │ │ ├── menu.html
│ │ │ │ │ │ └── splitbutton.html
│ │ │ │ │ └── Window
│ │ │ │ │ ├── dialog.html
│ │ │ │ │ ├── messager.html
│ │ │ │ │ └── window.html
│ │ │ │ ├── calendar.html
│ │ │ │ ├── combobox.html
│ │ │ │ ├── combogrid.html
│ │ │ │ ├── combo.html
│ │ │ │ ├── combotree.html
│ │ │ │ ├── css
│ │ │ │ │ ├── main.css
│ │ │ │ │ └── SyntaxHighlighter.css
│ │ │ │ ├── datagrid.html
│ │ │ │ ├── datebox.html
│ │ │ │ ├── datetimebox.html
│ │ │ │ ├── demo.html
│ │ │ │ ├── dialog.html
│ │ │ │ ├── documentation.html
│ │ │ │ ├── draggable.html
│ │ │ │ ├── droppable.html
│ │ │ │ ├── easyloader.html
│ │ │ │ ├── form.html
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion.png
│ │ │ │ │ ├── calendar.png
│ │ │ │ │ ├── combobox.png
│ │ │ │ │ ├── combogrid.png
│ │ │ │ │ ├── combo.png
│ │ │ │ │ ├── combotree.png
│ │ │ │ │ ├── datebox.png
│ │ │ │ │ ├── datetimebox.png
│ │ │ │ │ ├── dialog.png
│ │ │ │ │ ├── jquery-tabs-error2.jpg
│ │ │ │ │ ├── jquery-tabs-error.jpg
│ │ │ │ │ ├── layout.png
│ │ │ │ │ ├── linkbutton.png
│ │ │ │ │ ├── menubutton.png
│ │ │ │ │ ├── menu.png
│ │ │ │ │ ├── messager.png
│ │ │ │ │ ├── numberbox.png
│ │ │ │ │ ├── numberspinner.png
│ │ │ │ │ ├── panel.png
│ │ │ │ │ ├── progressbar.png
│ │ │ │ │ ├── searchbox.png
│ │ │ │ │ ├── slider.png
│ │ │ │ │ ├── splitbutton.png
│ │ │ │ │ ├── tabs.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── timespinner.png
│ │ │ │ │ ├── tree.png
│ │ │ │ │ ├── validatebox.png
│ │ │ │ │ └── window.png
│ │ │ │ ├── index.html
│ │ │ │ ├── js
│ │ │ │ │ ├── shBrushJScript.js
│ │ │ │ │ ├── shBrushXml.js
│ │ │ │ │ └── shCore.js
│ │ │ │ ├── layout.html
│ │ │ │ ├── linkbutton.html
│ │ │ │ ├── menubutton.html
│ │ │ │ ├── menu.html
│ │ │ │ ├── messager.html
│ │ │ │ ├── numberbox.html
│ │ │ │ ├── numberspinner.html
│ │ │ │ ├── pagination.html
│ │ │ │ ├── panel.html
│ │ │ │ ├── parser.html
│ │ │ │ ├── progressbar.html
│ │ │ │ ├── propertygrid.html
│ │ │ │ ├── resizable.html
│ │ │ │ ├── searchbox.html
│ │ │ │ ├── slider.html
│ │ │ │ ├── spinner.html
│ │ │ │ ├── splitbutton.html
│ │ │ │ ├── tabs.html
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── combo.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_button_down.gif
│ │ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ │ ├── 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_loading.gif
│ │ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ │ ├── panel_title.png
│ │ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── menu.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
│ │ │ │ │ │ ├── combobox.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── datagrid.css
│ │ │ │ │ │ ├── datebox.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── easyui.css
│ │ │ │ │ │ ├── easyui.css.bak
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── header_bg.png
│ │ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ │ ├── 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_loading.gif
│ │ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ │ ├── panel_title.gif
│ │ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ │ ├── panel_tool_expand.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
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── menu.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
│ │ │ │ ├── timespinner.html
│ │ │ │ ├── treegrid.html
│ │ │ │ ├── tree.html
│ │ │ │ ├── validatebox.html
│ │ │ │ └── window.html
│ │ │ ├── demo
│ │ │ │ ├── accordion.html
│ │ │ │ ├── calendar.html
│ │ │ │ ├── combobox_data.json
│ │ │ │ ├── combobox.html
│ │ │ │ ├── combogrid.html
│ │ │ │ ├── combo.html
│ │ │ │ ├── combotree.html
│ │ │ │ ├── datagrid2.html
│ │ │ │ ├── datagrid3.html
│ │ │ │ ├── datagrid4.html
│ │ │ │ ├── datagrid5.html
│ │ │ │ ├── datagrid_data2.json
│ │ │ │ ├── datagrid_data3.json
│ │ │ │ ├── datagrid_data.json
│ │ │ │ ├── datagrid.html
│ │ │ │ ├── datebox.html
│ │ │ │ ├── datetimebox.html
│ │ │ │ ├── demo.css
│ │ │ │ ├── dialog.html
│ │ │ │ ├── draggable.html
│ │ │ │ ├── droppable1.html
│ │ │ │ ├── droppable2.html
│ │ │ │ ├── droppable.html
│ │ │ │ ├── easyloader.html
│ │ │ │ ├── form_data.json
│ │ │ │ ├── form.html
│ │ │ │ ├── index.html
│ │ │ │ ├── layout1.html
│ │ │ │ ├── layout2.html
│ │ │ │ ├── layout.html
│ │ │ │ ├── linkbutton.html
│ │ │ │ ├── menubutton.html
│ │ │ │ ├── menu.html
│ │ │ │ ├── messager.html
│ │ │ │ ├── numberbox2.html
│ │ │ │ ├── numberbox.html
│ │ │ │ ├── numberspinner.html
│ │ │ │ ├── pagination.html
│ │ │ │ ├── panel2.html
│ │ │ │ ├── panel.html
│ │ │ │ ├── progressbar.html
│ │ │ │ ├── propertygrid_data.json
│ │ │ │ ├── propertygrid.html
│ │ │ │ ├── resizable.html
│ │ │ │ ├── searchbox.html
│ │ │ │ ├── slider.html
│ │ │ │ ├── splitbutton.html
│ │ │ │ ├── tabs_href_test.html
│ │ │ │ ├── tabs.html
│ │ │ │ ├── timespinner.html
│ │ │ │ ├── tree2.html
│ │ │ │ ├── tree_data.json
│ │ │ │ ├── treegrid2.html
│ │ │ │ ├── treegrid3.html
│ │ │ │ ├── treegrid_data2.json
│ │ │ │ ├── treegrid_data3.json
│ │ │ │ ├── treegrid_data.json
│ │ │ │ ├── treegrid.html
│ │ │ │ ├── treegrid_subdata.json
│ │ │ │ ├── tree.html
│ │ │ │ ├── validatebox.html
│ │ │ │ └── window.html
│ │ │ ├── easyloader.js
│ │ │ ├── index-api.html
│ │ │ ├── index-demo.html
│ │ │ ├── jquery-1.7.2.min.js
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── 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-nl.js
│ │ │ │ ├── easyui-lang-tr.js
│ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ └── easyui-lang-zh_TW.js
│ │ │ ├── plugins
│ │ │ │ ├── jquery.accordion.js
│ │ │ │ ├── jquery.calendar.js
│ │ │ │ ├── jquery.combobox.js
│ │ │ │ ├── jquery.combogrid.js
│ │ │ │ ├── jquery.combo.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.menubutton.js
│ │ │ │ ├── jquery.menu.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.treegrid.js
│ │ │ │ ├── jquery.tree.js
│ │ │ │ ├── jquery.validatebox.js
│ │ │ │ └── jquery.window.js
│ │ │ └── themes
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.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_button_down.gif
│ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── 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_loading.gif
│ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ ├── panel_title.png
│ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── 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
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.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
│ │ │ ├── easyui.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── easyui.css.bak
│ │ │ │ ├── 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
│ │ │ │ │ ├── header_bg.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── 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_loading.gif
│ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ ├── panel_title.gif
│ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ ├── panel_tool_expand.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
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.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
│ │ │ ├── Thumbs.db
│ │ │ ├── tip.png
│ │ │ └── undo.png
│ │ ├── jquery-easyui-1.3.6
│ │ │ ├── changelog.txt
│ │ │ ├── demo
│ │ │ │ ├── accordion
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── expandable.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── tools.html
│ │ │ │ ├── calendar
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── custom.html
│ │ │ │ │ ├── disabledate.html
│ │ │ │ │ └── firstday.html
│ │ │ │ ├── combo
│ │ │ │ │ └── basic.html
│ │ │ │ ├── combobox
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── combobox_data1.json
│ │ │ │ │ ├── combobox_data2.json
│ │ │ │ │ ├── customformat.html
│ │ │ │ │ ├── dynamicdata.html
│ │ │ │ │ ├── group.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ ├── navigation.html
│ │ │ │ │ ├── remotedata.html
│ │ │ │ │ └── remotejsonp.html
│ │ │ │ ├── combogrid
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── navigation.html
│ │ │ │ ├── combotree
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── datagrid
│ │ │ │ │ ├── aligncolumns.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── cellediting.html
│ │ │ │ │ ├── cellstyle.html
│ │ │ │ │ ├── checkbox.html
│ │ │ │ │ ├── clientpagination.html
│ │ │ │ │ ├── columngroup.html
│ │ │ │ │ ├── complextoolbar.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── custompager.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── datagrid_data2.json
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── formatcolumns.html
│ │ │ │ │ ├── frozencolumns.html
│ │ │ │ │ ├── frozenrows.html
│ │ │ │ │ ├── mergecells.html
│ │ │ │ │ ├── multisorting.html
│ │ │ │ │ ├── products.json
│ │ │ │ │ ├── rowborder.html
│ │ │ │ │ ├── rowediting.html
│ │ │ │ │ ├── rowstyle.html
│ │ │ │ │ ├── selection.html
│ │ │ │ │ ├── simpletoolbar.html
│ │ │ │ │ └── transform.html
│ │ │ │ ├── datebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── dateformat.html
│ │ │ │ │ ├── events.html
│ │ │ │ │ ├── sharedcalendar.html
│ │ │ │ │ └── validate.html
│ │ │ │ ├── datetimebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ └── showseconds.html
│ │ │ │ ├── demo.css
│ │ │ │ ├── dialog
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── complextoolbar.html
│ │ │ │ │ └── toolbarbuttons.html
│ │ │ │ ├── draggable
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── constain.html
│ │ │ │ │ └── snap.html
│ │ │ │ ├── droppable
│ │ │ │ │ ├── accept.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── sort.html
│ │ │ │ ├── easyloader
│ │ │ │ │ └── basic.html
│ │ │ │ ├── form
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── form_data1.json
│ │ │ │ │ └── load.html
│ │ │ │ ├── layout
│ │ │ │ │ ├── addremove.html
│ │ │ │ │ ├── autoheight.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── complex.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── full.html
│ │ │ │ │ ├── nestedlayout.html
│ │ │ │ │ ├── nocollapsible.html
│ │ │ │ │ ├── propertygrid_data1.json
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── linkbutton
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── group.html
│ │ │ │ │ ├── iconalign.html
│ │ │ │ │ ├── plain.html
│ │ │ │ │ ├── size.html
│ │ │ │ │ └── toggle.html
│ │ │ │ ├── menu
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── customitem.html
│ │ │ │ │ └── events.html
│ │ │ │ ├── menubutton
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── alignment.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── messager
│ │ │ │ │ ├── alert.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── interactive.html
│ │ │ │ │ └── position.html
│ │ │ │ ├── numberbox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── format.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── numberspinner
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── increment.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── pagination
│ │ │ │ │ ├── attaching.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── custombuttons.html
│ │ │ │ │ ├── layout.html
│ │ │ │ │ ├── links.html
│ │ │ │ │ └── simple.html
│ │ │ │ ├── panel
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── customtools.html
│ │ │ │ │ ├── loadcontent.html
│ │ │ │ │ ├── nestedpanel.html
│ │ │ │ │ └── paneltools.html
│ │ │ │ ├── progressbar
│ │ │ │ │ └── basic.html
│ │ │ │ ├── propertygrid
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── customcolumns.html
│ │ │ │ │ ├── groupformat.html
│ │ │ │ │ └── propertygrid_data1.json
│ │ │ │ ├── resizable
│ │ │ │ │ └── basic.html
│ │ │ │ ├── searchbox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── category.html
│ │ │ │ ├── slider
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── formattip.html
│ │ │ │ │ ├── nonlinear.html
│ │ │ │ │ ├── rule.html
│ │ │ │ │ └── vertical.html
│ │ │ │ ├── splitbutton
│ │ │ │ │ ├── actions.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── tabs
│ │ │ │ │ ├── autoheight.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── dropdown.html
│ │ │ │ │ ├── fixedwidth.html
│ │ │ │ │ ├── hover.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── modem.png
│ │ │ │ │ │ ├── pda.png
│ │ │ │ │ │ ├── scanner.png
│ │ │ │ │ │ └── tablet.png
│ │ │ │ │ ├── nestedtabs.html
│ │ │ │ │ ├── striptools.html
│ │ │ │ │ ├── tabimage.html
│ │ │ │ │ ├── tabposition.html
│ │ │ │ │ ├── tabstools.html
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── timespinner
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── tooltip
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── customcontent.html
│ │ │ │ │ ├── customstyle.html
│ │ │ │ │ ├── _dialog.html
│ │ │ │ │ ├── position.html
│ │ │ │ │ ├── toolbar.html
│ │ │ │ │ └── tooltipdialog.html
│ │ │ │ ├── tree
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── animation.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── checkbox.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── dnd.html
│ │ │ │ │ ├── editable.html
│ │ │ │ │ ├── formatting.html
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── lazyload.html
│ │ │ │ │ ├── lines.html
│ │ │ │ │ ├── tree_data1.json
│ │ │ │ │ └── tree_data2.json
│ │ │ │ ├── treegrid
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── clientpagination.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── editable.html
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── reports.html
│ │ │ │ │ ├── treegrid_data1.json
│ │ │ │ │ ├── treegrid_data2.json
│ │ │ │ │ └── treegrid_data3.json
│ │ │ │ ├── validatebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── customtooltip.html
│ │ │ │ └── window
│ │ │ │ ├── basic.html
│ │ │ │ ├── customtools.html
│ │ │ │ ├── inlinewindow.html
│ │ │ │ ├── modalwindow.html
│ │ │ │ └── windowlayout.html
│ │ │ ├── easyloader.js
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── licence_gpl.txt
│ │ │ ├── locale
│ │ │ │ ├── easyui-lang-af.js
│ │ │ │ ├── easyui-lang-ar.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-el.js
│ │ │ │ ├── easyui-lang-en.js
│ │ │ │ ├── easyui-lang-es.js
│ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ ├── easyui-lang-it.js
│ │ │ │ ├── easyui-lang-jp.js
│ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ ├── easyui-lang-pl.js
│ │ │ │ ├── easyui-lang-pt_BR.js
│ │ │ │ ├── easyui-lang-ru.js
│ │ │ │ ├── easyui-lang-sv_SE.js
│ │ │ │ ├── easyui-lang-tr.js
│ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ └── easyui-lang-zh_TW.js
│ │ │ ├── plugins
│ │ │ │ ├── jquery.accordion.js
│ │ │ │ ├── jquery.calendar.js
│ │ │ │ ├── jquery.combobox.js
│ │ │ │ ├── jquery.combogrid.js
│ │ │ │ ├── jquery.combo.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.menubutton.js
│ │ │ │ ├── jquery.menu.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.tooltip.js
│ │ │ │ ├── jquery.treegrid.js
│ │ │ │ ├── jquery.tree.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
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.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
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.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
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── textbox.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── jquery-easyui-1.4.1
│ │ │ ├── changelog.txt
│ │ │ ├── demo
│ │ │ │ ├── accordion
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── expandable.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── tools.html
│ │ │ │ ├── calendar
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── custom.html
│ │ │ │ │ ├── disabledate.html
│ │ │ │ │ ├── firstday.html
│ │ │ │ │ └── fluid.html
│ │ │ │ ├── combo
│ │ │ │ │ ├── animation.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── combobox
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── combobox_data1.json
│ │ │ │ │ ├── combobox_data2.json
│ │ │ │ │ ├── customformat.html
│ │ │ │ │ ├── dynamicdata.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── group.html
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── multiline.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ ├── navigation.html
│ │ │ │ │ ├── remotedata.html
│ │ │ │ │ └── remotejsonp.html
│ │ │ │ ├── combogrid
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── navigation.html
│ │ │ │ ├── combotree
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ ├── multiple.html
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── datagrid
│ │ │ │ │ ├── aligncolumns.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── cacheeditor.html
│ │ │ │ │ ├── cellediting.html
│ │ │ │ │ ├── cellstyle.html
│ │ │ │ │ ├── checkbox.html
│ │ │ │ │ ├── clientpagination.html
│ │ │ │ │ ├── columngroup.html
│ │ │ │ │ ├── complextoolbar.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── custompager.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── datagrid_data2.json
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── formatcolumns.html
│ │ │ │ │ ├── frozencolumns.html
│ │ │ │ │ ├── frozenrows.html
│ │ │ │ │ ├── mergecells.html
│ │ │ │ │ ├── multisorting.html
│ │ │ │ │ ├── products.json
│ │ │ │ │ ├── rowborder.html
│ │ │ │ │ ├── rowediting.html
│ │ │ │ │ ├── rowstyle.html
│ │ │ │ │ ├── selection.html
│ │ │ │ │ ├── simpletoolbar.html
│ │ │ │ │ └── transform.html
│ │ │ │ ├── datebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── dateformat.html
│ │ │ │ │ ├── events.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── restrict.html
│ │ │ │ │ ├── sharedcalendar.html
│ │ │ │ │ └── validate.html
│ │ │ │ ├── datetimebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── initvalue.html
│ │ │ │ │ └── showseconds.html
│ │ │ │ ├── datetimespinner
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── clearicon.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ └── format.html
│ │ │ │ ├── demo.css
│ │ │ │ ├── dialog
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── complextoolbar.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ └── toolbarbuttons.html
│ │ │ │ ├── draggable
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── constrain.html
│ │ │ │ │ └── snap.html
│ │ │ │ ├── droppable
│ │ │ │ │ ├── accept.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── sort.html
│ │ │ │ ├── easyloader
│ │ │ │ │ └── basic.html
│ │ │ │ ├── filebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── buttonalign.html
│ │ │ │ │ └── fluid.html
│ │ │ │ ├── form
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── form_data1.json
│ │ │ │ │ ├── load.html
│ │ │ │ │ └── validateonsubmit.html
│ │ │ │ ├── layout
│ │ │ │ │ ├── addremove.html
│ │ │ │ │ ├── autoheight.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── complex.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── datagrid_data1.json
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── full.html
│ │ │ │ │ ├── nestedlayout.html
│ │ │ │ │ ├── nocollapsible.html
│ │ │ │ │ ├── propertygrid_data1.json
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── linkbutton
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── group.html
│ │ │ │ │ ├── iconalign.html
│ │ │ │ │ ├── plain.html
│ │ │ │ │ ├── size.html
│ │ │ │ │ ├── style.html
│ │ │ │ │ └── toggle.html
│ │ │ │ ├── menu
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── customitem.html
│ │ │ │ │ └── events.html
│ │ │ │ ├── menubutton
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── alignment.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── messager
│ │ │ │ │ ├── alert.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── interactive.html
│ │ │ │ │ └── position.html
│ │ │ │ ├── numberbox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── format.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── numberspinner
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── increment.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── pagination
│ │ │ │ │ ├── attaching.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── custombuttons.html
│ │ │ │ │ ├── layout.html
│ │ │ │ │ ├── links.html
│ │ │ │ │ └── simple.html
│ │ │ │ ├── panel
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── customtools.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── loadcontent.html
│ │ │ │ │ ├── nestedpanel.html
│ │ │ │ │ └── paneltools.html
│ │ │ │ ├── progressbar
│ │ │ │ │ ├── basic.html
│ │ │ │ │ └── fluid.html
│ │ │ │ ├── propertygrid
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── customcolumns.html
│ │ │ │ │ ├── groupformat.html
│ │ │ │ │ └── propertygrid_data1.json
│ │ │ │ ├── resizable
│ │ │ │ │ └── basic.html
│ │ │ │ ├── searchbox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── category.html
│ │ │ │ │ └── fluid.html
│ │ │ │ ├── slider
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── formattip.html
│ │ │ │ │ ├── nonlinear.html
│ │ │ │ │ ├── rule.html
│ │ │ │ │ └── vertical.html
│ │ │ │ ├── splitbutton
│ │ │ │ │ ├── actions.html
│ │ │ │ │ └── basic.html
│ │ │ │ ├── tabs
│ │ │ │ │ ├── autoheight.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── dropdown.html
│ │ │ │ │ ├── fixedwidth.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── hover.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── modem.png
│ │ │ │ │ │ ├── pda.png
│ │ │ │ │ │ ├── scanner.png
│ │ │ │ │ │ └── tablet.png
│ │ │ │ │ ├── nestedtabs.html
│ │ │ │ │ ├── striptools.html
│ │ │ │ │ ├── tabimage.html
│ │ │ │ │ ├── tabposition.html
│ │ │ │ │ ├── tabstools.html
│ │ │ │ │ └── tree_data1.json
│ │ │ │ ├── textbox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── button.html
│ │ │ │ │ ├── clearicon.html
│ │ │ │ │ ├── custom.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── multiline.html
│ │ │ │ │ └── size.html
│ │ │ │ ├── timespinner
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ └── range.html
│ │ │ │ ├── tooltip
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── _content.html
│ │ │ │ │ ├── customcontent.html
│ │ │ │ │ ├── customstyle.html
│ │ │ │ │ ├── _dialog.html
│ │ │ │ │ ├── position.html
│ │ │ │ │ ├── toolbar.html
│ │ │ │ │ └── tooltipdialog.html
│ │ │ │ ├── tree
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── animation.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── checkbox.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── dnd.html
│ │ │ │ │ ├── editable.html
│ │ │ │ │ ├── formatting.html
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── lazyload.html
│ │ │ │ │ ├── lines.html
│ │ │ │ │ ├── tree_data1.json
│ │ │ │ │ └── tree_data2.json
│ │ │ │ ├── treegrid
│ │ │ │ │ ├── actions.html
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── clientpagination.html
│ │ │ │ │ ├── contextmenu.html
│ │ │ │ │ ├── editable.html
│ │ │ │ │ ├── fluid.html
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── lines.html
│ │ │ │ │ ├── reports.html
│ │ │ │ │ ├── treegrid_data1.json
│ │ │ │ │ ├── treegrid_data2.json
│ │ │ │ │ └── treegrid_data3.json
│ │ │ │ ├── validatebox
│ │ │ │ │ ├── basic.html
│ │ │ │ │ ├── customtooltip.html
│ │ │ │ │ └── validateonblur.html
│ │ │ │ └── window
│ │ │ │ ├── basic.html
│ │ │ │ ├── customtools.html
│ │ │ │ ├── fluid.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── inlinewindow.html
│ │ │ │ ├── modalwindow.html
│ │ │ │ └── windowlayout.html
│ │ │ ├── easyloader.js
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── licence_gpl.txt
│ │ │ ├── locale
│ │ │ │ ├── easyui-lang-af.js
│ │ │ │ ├── easyui-lang-am.js
│ │ │ │ ├── easyui-lang-ar.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-el.js
│ │ │ │ ├── easyui-lang-en.js
│ │ │ │ ├── easyui-lang-es.js
│ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ ├── easyui-lang-it.js
│ │ │ │ ├── easyui-lang-jp.js
│ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ ├── easyui-lang-pl.js
│ │ │ │ ├── easyui-lang-pt_BR.js
│ │ │ │ ├── easyui-lang-ru.js
│ │ │ │ ├── easyui-lang-sv_SE.js
│ │ │ │ ├── easyui-lang-tr.js
│ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ └── easyui-lang-zh_TW.js
│ │ │ ├── plugins
│ │ │ │ ├── jquery.accordion.js
│ │ │ │ ├── jquery.calendar.js
│ │ │ │ ├── jquery.combobox.js
│ │ │ │ ├── jquery.combogrid.js
│ │ │ │ ├── jquery.combo.js
│ │ │ │ ├── jquery.combotree.js
│ │ │ │ ├── jquery.datagrid.js
│ │ │ │ ├── jquery.datebox.js
│ │ │ │ ├── jquery.datetimebox.js
│ │ │ │ ├── jquery.datetimespinner.js
│ │ │ │ ├── jquery.dialog.js
│ │ │ │ ├── jquery.draggable.js
│ │ │ │ ├── jquery.droppable.js
│ │ │ │ ├── jquery.filebox.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.layout.js
│ │ │ │ ├── jquery.linkbutton.js
│ │ │ │ ├── jquery.menubutton.js
│ │ │ │ ├── jquery.menu.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.textbox.js
│ │ │ │ ├── jquery.timespinner.js
│ │ │ │ ├── jquery.tooltip.js
│ │ │ │ ├── jquery.treegrid.js
│ │ │ │ ├── jquery.tree.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
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.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
│ │ │ ├── combobox.css
│ │ │ ├── combo.css
│ │ │ ├── datagrid.css
│ │ │ ├── datebox.css
│ │ │ ├── dialog.css
│ │ │ ├── easyui.css
│ │ │ ├── filebox.css
│ │ │ ├── images
│ │ │ │ ├── accordion_arrows.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── calendar_arrows.png
│ │ │ │ ├── combo_arrow.png
│ │ │ │ ├── datagrid_icons.png
│ │ │ │ ├── datebox_arrow.png
│ │ │ │ ├── layout_arrows.png
│ │ │ │ ├── linkbutton_bg.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── menu_arrows.png
│ │ │ │ ├── messager_icons.png
│ │ │ │ ├── pagination_icons.png
│ │ │ │ ├── panel_tools.png
│ │ │ │ ├── searchbox_button.png
│ │ │ │ ├── slider_handle.png
│ │ │ │ ├── spinner_arrows.png
│ │ │ │ ├── tabs_icons.png
│ │ │ │ ├── tree_icons.png
│ │ │ │ └── validatebox_warning.png
│ │ │ ├── layout.css
│ │ │ ├── linkbutton.css
│ │ │ ├── menubutton.css
│ │ │ ├── menu.css
│ │ │ ├── messager.css
│ │ │ ├── numberbox.css
│ │ │ ├── pagination.css
│ │ │ ├── panel.css
│ │ │ ├── progressbar.css
│ │ │ ├── propertygrid.css
│ │ │ ├── searchbox.css
│ │ │ ├── slider.css
│ │ │ ├── spinner.css
│ │ │ ├── splitbutton.css
│ │ │ ├── tabs.css
│ │ │ ├── textbox.css
│ │ │ ├── tooltip.css
│ │ │ ├── tree.css
│ │ │ ├── validatebox.css
│ │ │ └── window.css
│ │ ├── jquery.form.js
│ │ ├── jquery.js
│ │ ├── jquery.md5.js
│ │ ├── jquery.metadata.js
│ │ ├── jquery.validate.js
│ │ ├── login.css
│ │ ├── messages_cn.js
│ │ ├── messenger.js
│ │ └── style.css
│ ├── login
│ │ ├── css
│ │ │ ├── adminia.css
│ │ │ ├── adminia-responsive.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap-responsive.min.css
│ │ │ └── login.css
│ │ ├── img
│ │ │ ├── body-bg.png
│ │ │ ├── glyphicons-halflings.png
│ │ │ └── glyphicons-halflings-white.png
│ │ └── js
│ │ ├── bootstrap.js
│ │ └── jquery-1.7.2.min.js
│ ├── login.jsp
│ └── WEB-INF
│ ├── applicationContext.xml
│ ├── jdbc-mysql.properties
│ ├── log4j.properties
│ ├── springmvc.xml
│ ├── user
│ │ ├── demo.jsp
│ │ ├── index.jsp
│ │ ├── layout.jsp
│ │ ├── login1.jsp
│ │ ├── login.jsp
│ │ ├── menu.jsp
│ │ ├── reg10.jsp
│ │ ├── reg11.jsp
│ │ ├── reg1.jsp
│ │ ├── reg3.jsp
│ │ ├── reg4.jsp
│ │ ├── reg5.jsp
│ │ ├── reg.jsp
│ │ ├── SessionTimeOut.jsp
│ │ ├── show.jsp
│ │ ├── success.jsp
│ │ ├── update.jsp
│ │ ├── updatePassword.jsp
│ │ └── userType.jsp
│ └── web.xml
└── xf.iml
164 directories, 1876 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论