升级easyUI到1.9.4版本
This commit is contained in:
18
erp_web/js/easyui/demo/panel/_content.html
Normal file
18
erp_web/js/easyui/demo/panel/_content.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>AJAX Content</title>
|
||||
</head>
|
||||
<body>
|
||||
<p style="font-size:14px">Here is the content loaded via AJAX.</p>
|
||||
<ul>
|
||||
<li>easyui is a collection of user-interface plugin based on jQuery.</li>
|
||||
<li>easyui provides essential functionality for building modern, interactive, javascript applications.</li>
|
||||
<li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
|
||||
<li>complete framework for HTML5 web page.</li>
|
||||
<li>easyui save your time and scales while developing your products.</li>
|
||||
<li>easyui is very easy but powerful.</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
31
erp_web/js/easyui/demo/panel/basic.html
Normal file
31
erp_web/js/easyui/demo/panel/basic.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Basic Panel - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Basic Panel</h2>
|
||||
<p>The panel is a container for other components or elements.</p>
|
||||
<div style="margin:20px 0 10px 0;">
|
||||
<a href="#" class="easyui-linkbutton" onclick="javascript:$('#p').panel('open')">Open</a>
|
||||
<a href="#" class="easyui-linkbutton" onclick="javascript:$('#p').panel('close')">Close</a>
|
||||
</div>
|
||||
<div id="p" class="easyui-panel" title="Basic Panel" style="width:700px;height:200px;padding:10px;">
|
||||
<p style="font-size:14px">jQuery EasyUI framework helps you build your web pages easily.</p>
|
||||
<ul>
|
||||
<li>easyui is a collection of user-interface plugin based on jQuery.</li>
|
||||
<li>easyui provides essential functionality for building modem, interactive, javascript applications.</li>
|
||||
<li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
|
||||
<li>complete framework for HTML5 web page.</li>
|
||||
<li>easyui save your time and scales while developing your products.</li>
|
||||
<li>easyui is very easy but powerful.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
35
erp_web/js/easyui/demo/panel/customtools.html
Normal file
35
erp_web/js/easyui/demo/panel/customtools.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Custom Panel Tools - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Custom Panel Tools</h2>
|
||||
<p>Click the right top buttons to perform actions with panel.</p>
|
||||
<div style="margin:20px 0 10px 0;"></div>
|
||||
<div class="easyui-panel" title="Custom Panel Tools" style="width:700px;height:200px;padding:10px;"
|
||||
data-options="iconCls:'icon-save',closable:true,tools:'#tt'">
|
||||
<p style="font-size:14px">jQuery EasyUI framework helps you build your web pages easily.</p>
|
||||
<ul>
|
||||
<li>easyui is a collection of user-interface plugin based on jQuery.</li>
|
||||
<li>easyui provides essential functionality for building modem, interactive, javascript applications.</li>
|
||||
<li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
|
||||
<li>complete framework for HTML5 web page.</li>
|
||||
<li>easyui save your time and scales while developing your products.</li>
|
||||
<li>easyui is very easy but powerful.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="tt">
|
||||
<a href="javascript:void(0)" class="icon-add" onclick="javascript:alert('add')"></a>
|
||||
<a href="javascript:void(0)" class="icon-edit" onclick="javascript:alert('edit')"></a>
|
||||
<a href="javascript:void(0)" class="icon-cut" onclick="javascript:alert('cut')"></a>
|
||||
<a href="javascript:void(0)" class="icon-help" onclick="javascript:alert('help')"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
21
erp_web/js/easyui/demo/panel/fluid.html
Normal file
21
erp_web/js/easyui/demo/panel/fluid.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Fluid Panel - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Fluid Panel</h2>
|
||||
<p>This example shows how to set the width of Panel to a percentage of its parent container.</p>
|
||||
<div style="margin:20px 0 10px 0;">
|
||||
</div>
|
||||
<div id="p" class="easyui-panel" title="Fluid Panel" style="width:100%;height:200px;padding:10px;">
|
||||
<p>The panel has a width of 100%.<p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
22
erp_web/js/easyui/demo/panel/footer.html
Normal file
22
erp_web/js/easyui/demo/panel/footer.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Panel Footer - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Panel Footer</h2>
|
||||
<p>The panel footer is displayed at the bottom of the panel and can consist of any other components.</p>
|
||||
<div style="margin:20px 0 10px 0;"></div>
|
||||
<div class="easyui-panel" title="Panel Footer" style="width:700px;height:200px;" data-options="footer:'#footer'">
|
||||
</div>
|
||||
<div id="footer" style="padding:5px;">
|
||||
Footer Content.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
26
erp_web/js/easyui/demo/panel/halign.html
Normal file
26
erp_web/js/easyui/demo/panel/halign.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Panel Header Alignment - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Panel Header Alignment</h2>
|
||||
<p>The panel header can be aligned horizontally or vertically.</p>
|
||||
<div style="margin:20px 0 10px 0;">
|
||||
</div>
|
||||
<div class="easyui-panel" title="Head on Top" style="width:700px;height:120px;">
|
||||
</div>
|
||||
<div style="margin-bottom:10px"></div>
|
||||
<div class="easyui-panel" title="Head on Left" halign="left" titleDirection="up" style="width:700px;height:120px;">
|
||||
</div>
|
||||
<div style="margin-bottom:10px"></div>
|
||||
<div class="easyui-panel" title="Head on Right" halign="right" style="width:700px;height:120px;">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
27
erp_web/js/easyui/demo/panel/loadcontent.html
Normal file
27
erp_web/js/easyui/demo/panel/loadcontent.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Load Panel Content - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Load Panel Content</h2>
|
||||
<p>Click the refresh button on top right of panel to load content.</p>
|
||||
<div style="margin:20px 0 10px 0;"></div>
|
||||
<div id="p" class="easyui-panel" title="Load Panel Content" style="width:700px;height:200px;padding:10px;"
|
||||
data-options="
|
||||
tools:[{
|
||||
iconCls:'icon-reload',
|
||||
handler:function(){
|
||||
$('#p').panel('refresh', '_content.html');
|
||||
}
|
||||
}]
|
||||
">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
30
erp_web/js/easyui/demo/panel/nestedpanel.html
Normal file
30
erp_web/js/easyui/demo/panel/nestedpanel.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Nested Panel - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Nested Panel</h2>
|
||||
<p>The panel can be placed inside containers and can contain other components.</p>
|
||||
<div style="margin:20px 0 10px 0;"></div>
|
||||
<div class="easyui-panel" title="Nested Panel" style="width:700px;height:200px;padding:10px;">
|
||||
<div class="easyui-layout" data-options="fit:true">
|
||||
<div data-options="region:'west',split:true" style="width:100px;padding:10px">
|
||||
Left Content
|
||||
</div>
|
||||
<div data-options="region:'east'" style="width:100px;padding:10px">
|
||||
Right Content
|
||||
</div>
|
||||
<div data-options="region:'center'" style="padding:10px">
|
||||
Center Content
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
37
erp_web/js/easyui/demo/panel/paneltools.html
Normal file
37
erp_web/js/easyui/demo/panel/paneltools.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Panel Tools - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Panel Tools</h2>
|
||||
<p>Click the right top buttons to perform actions with panel.</p>
|
||||
<div style="margin:20px 0 10px 0;">
|
||||
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="javascript:$('#p').panel('open')">Open</a>
|
||||
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="javascript:$('#p').panel('close')">Close</a>
|
||||
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="javascript:$('#p').panel('expand',true)">Expand</a>
|
||||
<a href="javascript:void(0)" class="easyui-linkbutton" onclick="javascript:$('#p').panel('collapse',true)">Collapse</a>
|
||||
</div>
|
||||
<div class="easyui-panel" style="height:350px;padding:5px;">
|
||||
<div id="p" class="easyui-panel" title="Panel Tools" style="width:600px;height:200px;padding:10px;"
|
||||
data-options="iconCls:'icon-save',collapsible:true,minimizable:true,maximizable:true,closable:true">
|
||||
<p style="font-size:14px">jQuery EasyUI framework helps you build your web pages easily.</p>
|
||||
<ul>
|
||||
<li>easyui is a collection of user-interface plugin based on jQuery.</li>
|
||||
<li>easyui provides essential functionality for building modem, interactive, javascript applications.</li>
|
||||
<li>using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.</li>
|
||||
<li>complete framework for HTML5 web page.</li>
|
||||
<li>easyui save your time and scales while developing your products.</li>
|
||||
<li>easyui is very easy but powerful.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user