├── Com.PluginKernel ├── demo │ ├── Plugin │ │ ├── Print.cs │ │ └── Print2.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── Com.PluginKernel.dll │ │ │ ├── Com.PluginKernel.pdb │ │ │ ├── opscore.dll │ │ │ └── test1.dll │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── pluginDemo.csproj.FileListAbsolute.txt │ │ │ ├── pluginDemo.csprojResolveAssemblyReference.cache │ │ │ ├── test1.dll │ │ │ └── test1.pdb │ └── pluginDemo.csproj ├── kernel │ ├── Com.PluginKernel.csproj │ ├── Com.PluginKernel.csproj.user │ ├── Demo │ │ └── DemoPluginApp.cs │ ├── IPlugin.cs │ ├── IPluginApp.cs │ ├── IPluginHandleProxy.cs │ ├── Log │ │ └── LogHandler.cs │ ├── PluginAppAttribute.cs │ ├── PluginAppBase.cs │ ├── PluginConfig.cs │ ├── PluginConnectionResult.cs │ ├── PluginException.cs │ ├── PluginHandleProxy.cs │ ├── PluginHandler.cs │ ├── PluginPackAttribute.cs │ ├── PluginState.cs │ ├── PluginUtil.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web │ │ └── PluginWebHandleProxy.cs │ ├── obj │ │ └── Debug │ │ │ ├── Com.PluginKernel.csprojResolveAssemblyReference.cache │ │ │ ├── Com.PluginKernel.dll │ │ │ ├── Com.PluginKernel.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── com.PluginKernel.csproj.FileListAbsolute.txt │ └── pluginKernel.snk └── test │ ├── Class1.cs │ ├── PluginTest.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── bin │ └── Debug │ │ ├── Com.PluginKernel.dll │ │ ├── Com.PluginKernel.pdb │ │ ├── Com.PluginKernel.xml │ │ ├── ComTest.exe │ │ ├── ComTest.pdb │ │ ├── ComTest.vshost.exe │ │ ├── ComTest.vshost.exe.manifest │ │ ├── opscore.dll │ │ ├── opscore.pdb │ │ └── plugins │ │ ├── com.test │ │ └── config.xml │ │ └── test1.dll │ └── obj │ └── Debug │ ├── ComTest.exe │ ├── ComTest.pdb │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PluginTest.csproj.FileListAbsolute.txt │ └── PluginTest.csprojResolveAssemblyReference.cache ├── Demo ├── Config.cs ├── Helper.cs ├── ILogic │ ├── ICaseLogic.cs │ ├── IDataLogic.cs │ └── IProduct.cs ├── IocObject.cs ├── Logic │ ├── CaseLogic.cs │ ├── DataLogic.cs │ ├── LOrder.cs │ └── LProduct.cs ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── RequestHandle - Copy.cs ├── RequestHandle.cs ├── RequestProxry.cs ├── Utils │ ├── DataExport.cs │ ├── ExcelExportProvider.cs │ ├── ExportHandle.cs │ ├── NPOIHelper.cs │ └── VerifyCodeManager.cs ├── bin │ └── Debug │ │ ├── Mono.Data.Sqlite.dll │ │ ├── MySql.Data.dll │ │ ├── NPOI.dll │ │ ├── NetPay.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── SharpCompress.3.5.dll │ │ ├── System.Data.SQLite.dll │ │ ├── System.Web.Mvc.dll │ │ ├── cir │ │ └── admin │ │ │ ├── case_gallery.html │ │ │ ├── case_list.html │ │ │ ├── export_import.html │ │ │ ├── export_setup.html │ │ │ ├── index.html │ │ │ └── save_case.html │ │ ├── com.mapfre.cir.dll │ │ ├── com.mapfre.cir.pdb │ │ ├── com.mapfre.cir.zip │ │ ├── ops.cms.dll │ │ └── ops.region.dll ├── cir │ ├── admin │ │ ├── case_gallery.html │ │ ├── case_list.html │ │ ├── export_import.html │ │ ├── export_setup.html │ │ ├── index.html │ │ └── save_case.html │ ├── css.css │ ├── css │ │ ├── btn.png │ │ ├── css.css │ │ ├── css_mobile.css │ │ ├── header_l1.gif │ │ ├── header_l2.gif │ │ ├── header_mobile.gif │ │ ├── tip.png │ │ └── top_bg.gif │ ├── db │ │ ├── cir.db │ │ └── database.sql │ ├── html │ │ ├── default.html │ │ ├── partner.html │ │ ├── partner_mobile.html │ │ ├── partner_saveCase.html │ │ └── partner_saveCase.html2 │ ├── js │ │ ├── DatePicker │ │ │ ├── DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.js │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── vssver2.scc │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ │ ├── datepicker.css │ │ │ │ │ ├── img.gif │ │ │ │ │ └── vssver2.scc │ │ │ │ ├── vssver2.scc │ │ │ │ └── whyGreen │ │ │ │ │ ├── bg.jpg │ │ │ │ │ ├── datepicker.css │ │ │ │ │ ├── img.gif │ │ │ │ │ └── vssver2.scc │ │ │ └── vssver2.scc │ │ ├── accordion.js │ │ ├── easyui │ │ │ ├── changelog.txt │ │ │ ├── demo │ │ │ │ ├── accordion │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── datagrid_data1.json │ │ │ │ │ └── tools.html │ │ │ │ ├── calendar │ │ │ │ │ ├── basic.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 │ │ │ │ │ ├── dateformat.html │ │ │ │ │ ├── events.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 │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── addremove.html │ │ │ │ │ ├── autoheight.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── complex.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 │ │ │ │ │ └── toggle.html │ │ │ │ ├── menu │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customitem.html │ │ │ │ │ └── events.html │ │ │ │ ├── menubutton │ │ │ │ │ ├── actions.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 │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── custombuttons.html │ │ │ │ │ └── simple.html │ │ │ │ ├── panel │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── basic.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 │ │ │ │ │ ├── rule.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── splitbutton │ │ │ │ │ ├── actions.html │ │ │ │ │ └── basic.html │ │ │ │ ├── tabs │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── autoheight.html │ │ │ │ │ ├── basic.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 │ │ │ │ │ ├── _content.html │ │ │ │ │ ├── _dialog.html │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── customcontent.html │ │ │ │ │ ├── customstyle.html │ │ │ │ │ ├── position.html │ │ │ │ │ ├── toolbar.html │ │ │ │ │ └── tooltipdialog.html │ │ │ │ ├── tree │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── contextmenu.html │ │ │ │ │ ├── dnd.html │ │ │ │ │ ├── editable.html │ │ │ │ │ ├── icons.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 │ │ │ ├── dgloader.js │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.min.js │ │ │ ├── jquery.min.js │ │ │ ├── locale │ │ │ │ └── easyui-lang-zh_CN.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.tooltip.js │ │ │ │ ├── jquery.tree.js │ │ │ │ ├── jquery.treegrid.js │ │ │ │ ├── jquery.validatebox.js │ │ │ │ └── jquery.window.js │ │ │ └── themes │ │ │ │ ├── black │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── 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 │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── bootstrap │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── 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 │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── default │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── 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 │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tooltip.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 │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── 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 │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.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 │ │ │ │ ├── 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 │ │ │ │ ├── Thumbs.db │ │ │ │ ├── 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 │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ └── export.js │ ├── plugin.config │ ├── query │ │ ├── CaseGallery.config │ │ └── CaseList.config │ ├── watermark.png │ └── xls │ │ └── 2014_ipt_sheet.xls ├── com.mapfre.cir.csproj ├── com.mapfre.cir.csproj.user ├── com.mapfre.cir.sln └── entity │ ├── Case.cs │ ├── OrderItem.cs │ ├── OrderLog.cs │ ├── PagedOrder.cs │ ├── Person.cs │ ├── Product.cs │ └── SqlFormat.cs ├── README.md └── snapshot1.png /Com.PluginKernel/demo/Plugin/Print.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/Plugin/Print.cs -------------------------------------------------------------------------------- /Com.PluginKernel/demo/Plugin/Print2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/Plugin/Print2.cs -------------------------------------------------------------------------------- /Com.PluginKernel/demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Com.PluginKernel/demo/bin/Debug/Com.PluginKernel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/bin/Debug/Com.PluginKernel.dll -------------------------------------------------------------------------------- /Com.PluginKernel/demo/bin/Debug/Com.PluginKernel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/bin/Debug/Com.PluginKernel.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/demo/bin/Debug/opscore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/bin/Debug/opscore.dll -------------------------------------------------------------------------------- /Com.PluginKernel/demo/bin/Debug/test1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/bin/Debug/test1.dll -------------------------------------------------------------------------------- /Com.PluginKernel/demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Com.PluginKernel/demo/obj/Debug/pluginDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/obj/Debug/pluginDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Com.PluginKernel/demo/obj/Debug/pluginDemo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/obj/Debug/pluginDemo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Com.PluginKernel/demo/obj/Debug/test1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/obj/Debug/test1.dll -------------------------------------------------------------------------------- /Com.PluginKernel/demo/obj/Debug/test1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/obj/Debug/test1.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/demo/pluginDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/demo/pluginDemo.csproj -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Com.PluginKernel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Com.PluginKernel.csproj -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Com.PluginKernel.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Com.PluginKernel.csproj.user -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Demo/DemoPluginApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Demo/DemoPluginApp.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/IPlugin.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/IPluginApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/IPluginApp.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/IPluginHandleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/IPluginHandleProxy.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Log/LogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Log/LogHandler.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginAppAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginAppAttribute.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginAppBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginAppBase.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginConfig.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginConnectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginConnectionResult.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginException.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginHandleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginHandleProxy.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginHandler.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginPackAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginPackAttribute.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginState.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/PluginUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/PluginUtil.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/Web/PluginWebHandleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/Web/PluginWebHandleProxy.cs -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.dll -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/obj/Debug/Com.PluginKernel.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/obj/Debug/com.PluginKernel.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/obj/Debug/com.PluginKernel.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Com.PluginKernel/kernel/pluginKernel.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/kernel/pluginKernel.snk -------------------------------------------------------------------------------- /Com.PluginKernel/test/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/Class1.cs -------------------------------------------------------------------------------- /Com.PluginKernel/test/PluginTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/PluginTest.csproj -------------------------------------------------------------------------------- /Com.PluginKernel/test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/Com.PluginKernel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/Com.PluginKernel.dll -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/Com.PluginKernel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/Com.PluginKernel.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/Com.PluginKernel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/Com.PluginKernel.xml -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/ComTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/ComTest.exe -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/ComTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/ComTest.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/ComTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/ComTest.vshost.exe -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/ComTest.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/ComTest.vshost.exe.manifest -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/opscore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/opscore.dll -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/opscore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/opscore.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/plugins/com.test/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/plugins/com.test/config.xml -------------------------------------------------------------------------------- /Com.PluginKernel/test/bin/Debug/plugins/test1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/bin/Debug/plugins/test1.dll -------------------------------------------------------------------------------- /Com.PluginKernel/test/obj/Debug/ComTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/obj/Debug/ComTest.exe -------------------------------------------------------------------------------- /Com.PluginKernel/test/obj/Debug/ComTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/obj/Debug/ComTest.pdb -------------------------------------------------------------------------------- /Com.PluginKernel/test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Com.PluginKernel/test/obj/Debug/PluginTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/obj/Debug/PluginTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Com.PluginKernel/test/obj/Debug/PluginTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Com.PluginKernel/test/obj/Debug/PluginTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Demo/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Config.cs -------------------------------------------------------------------------------- /Demo/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Helper.cs -------------------------------------------------------------------------------- /Demo/ILogic/ICaseLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/ILogic/ICaseLogic.cs -------------------------------------------------------------------------------- /Demo/ILogic/IDataLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/ILogic/IDataLogic.cs -------------------------------------------------------------------------------- /Demo/ILogic/IProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/ILogic/IProduct.cs -------------------------------------------------------------------------------- /Demo/IocObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/IocObject.cs -------------------------------------------------------------------------------- /Demo/Logic/CaseLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Logic/CaseLogic.cs -------------------------------------------------------------------------------- /Demo/Logic/DataLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Logic/DataLogic.cs -------------------------------------------------------------------------------- /Demo/Logic/LOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Logic/LOrder.cs -------------------------------------------------------------------------------- /Demo/Logic/LProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Logic/LProduct.cs -------------------------------------------------------------------------------- /Demo/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Main.cs -------------------------------------------------------------------------------- /Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/RequestHandle - Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/RequestHandle - Copy.cs -------------------------------------------------------------------------------- /Demo/RequestHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/RequestHandle.cs -------------------------------------------------------------------------------- /Demo/RequestProxry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/RequestProxry.cs -------------------------------------------------------------------------------- /Demo/Utils/DataExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Utils/DataExport.cs -------------------------------------------------------------------------------- /Demo/Utils/ExcelExportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Utils/ExcelExportProvider.cs -------------------------------------------------------------------------------- /Demo/Utils/ExportHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Utils/ExportHandle.cs -------------------------------------------------------------------------------- /Demo/Utils/NPOIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Utils/NPOIHelper.cs -------------------------------------------------------------------------------- /Demo/Utils/VerifyCodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/Utils/VerifyCodeManager.cs -------------------------------------------------------------------------------- /Demo/bin/Debug/Mono.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/Mono.Data.Sqlite.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/NPOI.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/NetPay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/NetPay.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/SharpCompress.3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/SharpCompress.3.5.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/case_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/case_gallery.html -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/case_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/case_list.html -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/export_import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/export_import.html -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/export_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/export_setup.html -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/index.html -------------------------------------------------------------------------------- /Demo/bin/Debug/cir/admin/save_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/cir/admin/save_case.html -------------------------------------------------------------------------------- /Demo/bin/Debug/com.mapfre.cir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/com.mapfre.cir.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/com.mapfre.cir.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/com.mapfre.cir.pdb -------------------------------------------------------------------------------- /Demo/bin/Debug/com.mapfre.cir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/com.mapfre.cir.zip -------------------------------------------------------------------------------- /Demo/bin/Debug/ops.cms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/ops.cms.dll -------------------------------------------------------------------------------- /Demo/bin/Debug/ops.region.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/bin/Debug/ops.region.dll -------------------------------------------------------------------------------- /Demo/cir/admin/case_gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/case_gallery.html -------------------------------------------------------------------------------- /Demo/cir/admin/case_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/case_list.html -------------------------------------------------------------------------------- /Demo/cir/admin/export_import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/export_import.html -------------------------------------------------------------------------------- /Demo/cir/admin/export_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/export_setup.html -------------------------------------------------------------------------------- /Demo/cir/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/index.html -------------------------------------------------------------------------------- /Demo/cir/admin/save_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/admin/save_case.html -------------------------------------------------------------------------------- /Demo/cir/css.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/cir/css/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/btn.png -------------------------------------------------------------------------------- /Demo/cir/css/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/css.css -------------------------------------------------------------------------------- /Demo/cir/css/css_mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/css_mobile.css -------------------------------------------------------------------------------- /Demo/cir/css/header_l1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/header_l1.gif -------------------------------------------------------------------------------- /Demo/cir/css/header_l2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/header_l2.gif -------------------------------------------------------------------------------- /Demo/cir/css/header_mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/header_mobile.gif -------------------------------------------------------------------------------- /Demo/cir/css/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/tip.png -------------------------------------------------------------------------------- /Demo/cir/css/top_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/css/top_bg.gif -------------------------------------------------------------------------------- /Demo/cir/db/cir.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/db/cir.db -------------------------------------------------------------------------------- /Demo/cir/db/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/db/database.sql -------------------------------------------------------------------------------- /Demo/cir/html/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/html/default.html -------------------------------------------------------------------------------- /Demo/cir/html/partner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/html/partner.html -------------------------------------------------------------------------------- /Demo/cir/html/partner_mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/html/partner_mobile.html -------------------------------------------------------------------------------- /Demo/cir/html/partner_saveCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/html/partner_saveCase.html -------------------------------------------------------------------------------- /Demo/cir/html/partner_saveCase.html2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/html/partner_saveCase.html2 -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/DatePicker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/DatePicker.htm -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/WdatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/WdatePicker.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/calendar.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/config.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/lang/en.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/lang/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/lang/vssver2.scc -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/lang/zh-cn.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/lang/zh-tw.js -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/WdatePicker.css -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/default/datepicker.css -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/default/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/default/vssver2.scc -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/vssver2.scc -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/skin/whyGreen/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/skin/whyGreen/vssver2.scc -------------------------------------------------------------------------------- /Demo/cir/js/DatePicker/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/DatePicker/vssver2.scc -------------------------------------------------------------------------------- /Demo/cir/js/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/accordion.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/changelog.txt -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/_content.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/ajax.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/datagrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/datagrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/accordion/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/accordion/tools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/calendar/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/calendar/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/calendar/firstday.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/calendar/firstday.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combo/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combo/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/combobox_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/combobox_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/combobox_data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/combobox_data2.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/customformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/customformat.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/dynamicdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/dynamicdata.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/group.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/multiple.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/navigation.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/remotedata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/remotedata.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combobox/remotejsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combobox/remotejsonp.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/datagrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/datagrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/initvalue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/initvalue.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/multiple.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combogrid/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combogrid/navigation.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combotree/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combotree/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combotree/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combotree/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combotree/initvalue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combotree/initvalue.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combotree/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combotree/multiple.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/combotree/tree_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/combotree/tree_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/aligncolumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/aligncolumns.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/cellediting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/cellediting.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/cellstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/cellstyle.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/checkbox.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/clientpagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/clientpagination.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/columngroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/columngroup.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/complextoolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/complextoolbar.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/contextmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/contextmenu.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/custompager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/custompager.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/datagrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/datagrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/datagrid_data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/datagrid_data2.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/footer.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/formatcolumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/formatcolumns.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/frozencolumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/frozencolumns.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/frozenrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/frozenrows.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/mergecells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/mergecells.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/multisorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/multisorting.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/products.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/rowborder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/rowborder.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/rowediting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/rowediting.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/rowstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/rowstyle.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/selection.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/simpletoolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/simpletoolbar.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datagrid/transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datagrid/transform.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datebox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datebox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datebox/dateformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datebox/dateformat.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datebox/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datebox/events.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datebox/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datebox/validate.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datetimebox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datetimebox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datetimebox/initvalue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datetimebox/initvalue.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/datetimebox/showseconds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/datetimebox/showseconds.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/demo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/dialog/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/dialog/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/dialog/complextoolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/dialog/complextoolbar.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/dialog/toolbarbuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/dialog/toolbarbuttons.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/draggable/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/draggable/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/draggable/constain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/draggable/constain.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/draggable/snap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/draggable/snap.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/droppable/accept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/droppable/accept.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/droppable/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/droppable/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/droppable/sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/droppable/sort.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/easyloader/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/easyloader/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/form/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/form/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/form/form_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/form/form_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/form/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/form/load.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/_content.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/addremove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/addremove.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/autoheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/autoheight.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/complex.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/datagrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/datagrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/full.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/nestedlayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/nestedlayout.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/nocollapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/nocollapsible.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/propertygrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/propertygrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/layout/tree_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/layout/tree_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/linkbutton/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/linkbutton/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/linkbutton/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/linkbutton/group.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/linkbutton/iconalign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/linkbutton/iconalign.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/linkbutton/plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/linkbutton/plain.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/linkbutton/toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/linkbutton/toggle.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/menu/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/menu/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/menu/customitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/menu/customitem.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/menu/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/menu/events.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/menubutton/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/menubutton/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/menubutton/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/menubutton/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/messager/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/messager/alert.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/messager/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/messager/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/messager/interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/messager/interactive.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/messager/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/messager/position.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberbox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberbox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberbox/format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberbox/format.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberbox/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberbox/range.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberspinner/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberspinner/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberspinner/increment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberspinner/increment.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/numberspinner/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/numberspinner/range.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/pagination/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/pagination/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/pagination/custombuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/pagination/custombuttons.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/pagination/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/pagination/simple.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/_content.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/customtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/customtools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/loadcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/loadcontent.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/nestedpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/nestedpanel.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/panel/paneltools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/panel/paneltools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/progressbar/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/progressbar/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/propertygrid/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/propertygrid/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/propertygrid/customcolumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/propertygrid/customcolumns.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/propertygrid/groupformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/propertygrid/groupformat.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/propertygrid/propertygrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/propertygrid/propertygrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/resizable/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/resizable/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/searchbox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/searchbox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/searchbox/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/searchbox/category.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/slider/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/slider/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/slider/formattip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/slider/formattip.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/slider/rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/slider/rule.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/slider/vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/slider/vertical.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/splitbutton/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/splitbutton/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/splitbutton/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/splitbutton/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/_content.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/autoheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/autoheight.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/fixedwidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/fixedwidth.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/hover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/hover.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/images/modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/images/modem.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/images/pda.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/images/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/images/scanner.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/images/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/images/tablet.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/nestedtabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/nestedtabs.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/striptools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/striptools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/tabimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/tabimage.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/tabposition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/tabposition.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/tabstools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/tabstools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tabs/tree_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tabs/tree_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/timespinner/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/timespinner/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/timespinner/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/timespinner/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/timespinner/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/timespinner/range.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/_content.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/_dialog.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/ajax.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/customcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/customcontent.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/customstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/customstyle.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/position.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/toolbar.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tooltip/tooltipdialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tooltip/tooltipdialog.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/animation.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/checkbox.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/contextmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/contextmenu.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/dnd.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/editable.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/icons.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/lines.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/tree_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/tree_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/tree/tree_data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/tree/tree_data2.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/actions.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/clientpagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/clientpagination.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/contextmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/contextmenu.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/editable.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/footer.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/reports.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/treegrid_data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/treegrid_data1.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/treegrid_data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/treegrid_data2.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/treegrid/treegrid_data3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/treegrid/treegrid_data3.json -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/validatebox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/validatebox/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/validatebox/customtooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/validatebox/customtooltip.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/window/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/window/basic.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/window/customtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/window/customtools.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/window/inlinewindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/window/inlinewindow.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/window/modalwindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/window/modalwindow.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/demo/window/windowlayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/demo/window/windowlayout.html -------------------------------------------------------------------------------- /Demo/cir/js/easyui/dgloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/dgloader.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/easyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/easyloader.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/jquery.easyui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/jquery.easyui.min.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/jquery.min.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/locale/easyui-lang-zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/locale/easyui-lang-zh_CN.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.accordion.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.calendar.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.combo.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.combobox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.combogrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.combogrid.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.combotree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.combotree.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.datagrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.datagrid.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.datebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.datebox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.datetimebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.datetimebox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.dialog.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.draggable.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.droppable.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.form.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.layout.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.linkbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.linkbutton.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.menu.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.menubutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.menubutton.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.messager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.messager.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.numberbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.numberbox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.numberspinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.numberspinner.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.pagination.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.panel.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.parser.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.progressbar.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.propertygrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.propertygrid.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.resizable.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.searchbox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.slider.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.spinner.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.splitbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.splitbutton.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.tabs.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.timespinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.timespinner.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.tooltip.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.tree.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.treegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.treegrid.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.validatebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.validatebox.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/plugins/jquery.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/plugins/jquery.window.js -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/accordion.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/calendar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/combo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/combobox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/datagrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/datagrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/datebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/datebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/dialog.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/easyui.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/Thumbs.db -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/accordion_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/calendar_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/combo_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/datagrid_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/datebox_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/layout_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/linkbutton_bg.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/loading.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/menu_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/messager_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/pagination_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/panel_tools.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/searchbox_button.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/slider_handle.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/spinner_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/tabs_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/tree_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/images/validatebox_warning.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/layout.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/linkbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/linkbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/menu.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/menubutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/menubutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/messager.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/pagination.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/panel.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/progressbar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/propertygrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/propertygrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/searchbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/searchbox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/slider.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/spinner.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/splitbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/splitbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/tabs.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/tooltip.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/tree.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/validatebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/validatebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/black/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/black/window.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/accordion.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/calendar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/combo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/combobox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/datagrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/datagrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/datebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/datebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/dialog.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/easyui.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/Thumbs.db -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/accordion_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/calendar_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/combo_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/datagrid_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/datebox_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/layout_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/linkbutton_bg.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/loading.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/menu_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/messager_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/pagination_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/panel_tools.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/searchbox_button.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/slider_handle.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/spinner_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/tabs_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/tree_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/images/validatebox_warning.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/layout.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/linkbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/linkbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/menu.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/menubutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/menubutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/messager.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/pagination.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/panel.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/progressbar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/propertygrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/propertygrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/searchbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/searchbox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/slider.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/spinner.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/splitbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/splitbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/tabs.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/tooltip.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/tree.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/validatebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/validatebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/bootstrap/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/bootstrap/window.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/accordion.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/calendar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/combo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/combobox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/datagrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/datagrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/datebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/datebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/dialog.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/easyui.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/Thumbs.db -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/accordion_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/calendar_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/combo_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/datagrid_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/datebox_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/layout_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/linkbutton_bg.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/loading.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/menu_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/messager_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/pagination_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/panel_tools.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/searchbox_button.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/slider_handle.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/spinner_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/tabs_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/tree_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/images/validatebox_warning.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/layout.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/linkbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/linkbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/menu.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/menubutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/menubutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/messager.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/pagination.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/panel.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/progressbar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/propertygrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/propertygrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/searchbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/searchbox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/slider.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/spinner.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/splitbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/splitbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/tabs.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/tooltip.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/tree.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/validatebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/validatebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/default/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/default/window.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/accordion.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/calendar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/combo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/combobox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/datagrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/datagrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/datebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/datebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/dialog.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/easyui.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/Thumbs.db -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/accordion_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/calendar_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/combo_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/datagrid_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/datebox_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/layout_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/linkbutton_bg.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/loading.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/menu_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/messager_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/pagination_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/panel_tools.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/searchbox_button.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/slider_handle.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/spinner_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/tabs_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/tree_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/images/validatebox_warning.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/layout.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/linkbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/linkbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/menu.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/menubutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/menubutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/messager.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/pagination.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/panel.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/progressbar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/propertygrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/propertygrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/searchbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/searchbox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/slider.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/spinner.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/splitbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/splitbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/tabs.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/tooltip.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/tree.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/validatebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/validatebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/gray/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/gray/window.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icon.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/back.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/cancel.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/cut.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/edit_add.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/edit_remove.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/filesave.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/help.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/mini_add.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/mini_edit.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/mini_refresh.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/no.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/ok.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/pencil.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/print.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/redo.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/reload.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/search.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/sum.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/tip.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/icons/undo.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/accordion.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/calendar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/combo.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/combobox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/datagrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/datagrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/datebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/datebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/dialog.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/easyui.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/Thumbs.db -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/accordion_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/accordion_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/blank.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/calendar_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/calendar_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/combo_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/combo_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/datagrid_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/datagrid_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/datebox_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/datebox_arrow.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/layout_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/layout_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/linkbutton_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/linkbutton_bg.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/loading.gif -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/menu_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/menu_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/messager_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/messager_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/pagination_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/pagination_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/panel_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/panel_tools.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/searchbox_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/searchbox_button.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/slider_handle.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/spinner_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/spinner_arrows.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/tabs_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/tabs_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/tree_icons.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/images/validatebox_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/images/validatebox_warning.png -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/layout.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/linkbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/linkbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/menu.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/menubutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/menubutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/messager.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/pagination.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/panel.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/progressbar.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/propertygrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/propertygrid.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/searchbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/searchbox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/slider.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/spinner.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/splitbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/splitbutton.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/tabs.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/tooltip.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/tree.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/validatebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/validatebox.css -------------------------------------------------------------------------------- /Demo/cir/js/easyui/themes/metro/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/easyui/themes/metro/window.css -------------------------------------------------------------------------------- /Demo/cir/js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/js/export.js -------------------------------------------------------------------------------- /Demo/cir/plugin.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/plugin.config -------------------------------------------------------------------------------- /Demo/cir/query/CaseGallery.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/query/CaseGallery.config -------------------------------------------------------------------------------- /Demo/cir/query/CaseList.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/query/CaseList.config -------------------------------------------------------------------------------- /Demo/cir/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/watermark.png -------------------------------------------------------------------------------- /Demo/cir/xls/2014_ipt_sheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/cir/xls/2014_ipt_sheet.xls -------------------------------------------------------------------------------- /Demo/com.mapfre.cir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/com.mapfre.cir.csproj -------------------------------------------------------------------------------- /Demo/com.mapfre.cir.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/com.mapfre.cir.csproj.user -------------------------------------------------------------------------------- /Demo/com.mapfre.cir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/com.mapfre.cir.sln -------------------------------------------------------------------------------- /Demo/entity/Case.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/Case.cs -------------------------------------------------------------------------------- /Demo/entity/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/OrderItem.cs -------------------------------------------------------------------------------- /Demo/entity/OrderLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/OrderLog.cs -------------------------------------------------------------------------------- /Demo/entity/PagedOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/PagedOrder.cs -------------------------------------------------------------------------------- /Demo/entity/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/Person.cs -------------------------------------------------------------------------------- /Demo/entity/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/Product.cs -------------------------------------------------------------------------------- /Demo/entity/SqlFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/Demo/entity/SqlFormat.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/README.md -------------------------------------------------------------------------------- /snapshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixre/dotnet-plugin-kernel/HEAD/snapshot1.png --------------------------------------------------------------------------------