Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
91a6b722
Commit
91a6b722
authored
Dec 19, 2018
by
季圣华
Browse files
更新前端
parent
609756e9
Changes
707
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 707+
files are displayed.
Plain diff
Email patch
erp_web/js/easyui-1.3.5/demo/linkbutton/group.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Button Group - 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>
Button Group
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
In a button group only one button can be selected.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
style=
"padding:5px;border:1px solid #ddd;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g1'"
>
Button 1
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g1'"
>
Button 2
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g1'"
>
Button 3
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g1'"
>
Button 4
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g1'"
>
Button 5
</a>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
style=
"padding:5px;border:1px solid #ddd;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g2',plain:true"
>
Button 1
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g2',plain:true"
>
Button 2
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g2',plain:true"
>
Button 3
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g2',plain:true"
>
Button 4
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true,group:'g2',plain:true"
>
Button 5
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/linkbutton/iconalign.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Icon Align on LinkButton - 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>
Icon Align on LinkButton
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Change the icon align to place icon on left or right of button.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
id=
"button-bar"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-add'"
>
Add
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-remove'"
>
Remove
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-save'"
>
Save
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-cut',disabled:true"
>
Cut
</a>
</div>
<div
style=
"margin:10px 0"
>
<span>
Select Icon Align:
</span>
<select
onchange=
"$('#button-bar a').linkbutton({iconAlign:this.value})"
>
<option
value=
"left"
>
Left
</option>
<option
value=
"right"
>
Right
</option>
</select>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/linkbutton/plain.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Plain LinkButton - 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>
Plain LinkButton
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The link buttons have plain effect.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
style=
"padding:5px;border:1px solid #ddd;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-cancel'"
>
Cancel
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-reload'"
>
Refresh
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-search'"
>
Search
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true"
>
Text Button
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-print'"
>
Print
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-help'"
>
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-save'"
></a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true,iconCls:'icon-back'"
></a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/linkbutton/toggle.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Toggle Button - 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>
Toggle Button
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click the button below to switch its selected state.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
style=
"padding:5px;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-add',toggle:true"
>
Add
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-remove',toggle:true"
>
Remove
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-save',toggle:true"
>
Save
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-cut',toggle:true,disabled:true"
>
Cut
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"toggle:true"
>
Text Button
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/menu/basic.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic Menu - 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 Menu
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Right click on page to display menu.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
id=
"mm"
class=
"easyui-menu"
style=
"width:120px;"
>
<div
onclick=
"javascript:alert('new')"
>
New
</div>
<div>
<span>
Open
</span>
<div
style=
"width:150px;"
>
<div><b>
Word
</b></div>
<div>
Excel
</div>
<div>
PowerPoint
</div>
<div>
<span>
M1
</span>
<div
style=
"width:120px;"
>
<div>
sub1
</div>
<div>
sub2
</div>
<div>
<span>
Sub
</span>
<div
style=
"width:80px;"
>
<div
onclick=
"javascript:alert('sub21')"
>
sub21
</div>
<div>
sub22
</div>
<div>
sub23
</div>
</div>
</div>
<div>
sub3
</div>
</div>
</div>
<div>
<span>
Window Demos
</span>
<div
style=
"width:120px;"
>
<div
data-options=
"href:'window.html'"
>
Window
</div>
<div
data-options=
"href:'dialog.html'"
>
Dialog
</div>
<div><a
href=
"http://www.jeasyui.com"
target=
"_blank"
>
EasyUI
</a></div>
</div>
</div>
</div>
</div>
<div
data-options=
"iconCls:'icon-save'"
>
Save
</div>
<div
data-options=
"iconCls:'icon-print',disabled:true"
>
Print
</div>
<div
class=
"menu-sep"
></div>
<div>
Exit
</div>
</div>
<script>
$
(
function
(){
$
(
document
).
bind
(
'
contextmenu
'
,
function
(
e
){
e
.
preventDefault
();
$
(
'
#mm
'
).
menu
(
'
show
'
,
{
left
:
e
.
pageX
,
top
:
e
.
pageY
});
});
});
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/menu/customitem.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Custom Menu Item - 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 Menu Item
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Right click on page to display menu, move to the 'Open' item to display its custom sub content.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
id=
"mm"
class=
"easyui-menu"
style=
"width:120px;"
>
<div>
New
</div>
<div>
<span>
Open
</span>
<div
class=
"menu-content"
style=
"text-align:left;padding:10px"
>
<div
style=
"font-weight:bold;font-size:16px"
>
Select your Language:
</div>
<ul
style=
"margin:0;padding:0 0 0 40px"
>
<li><a
href=
"javascript:void(0)"
>
Java
</a></li>
<li><a
href=
"javascript:void(0)"
>
Basic
</a></li>
<li><a
href=
"javascript:void(0)"
>
C++
</a></li>
<li><a
href=
"javascript:void(0)"
>
Fortran
</a></li>
<li>
<span>
Other
</span>
<input>
</li>
</ul>
<div
style=
"padding:10px 0 0 30px"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-ok'"
>
Ok
</a>
</div>
</div>
</div>
<div
data-options=
"iconCls:'icon-save'"
>
Save
</div>
<div
data-options=
"iconCls:'icon-print'"
>
Print
</div>
<div
class=
"menu-sep"
></div>
<div>
Exit
</div>
</div>
<script>
$
(
function
(){
$
(
document
).
bind
(
'
contextmenu
'
,
function
(
e
){
e
.
preventDefault
();
$
(
'
#mm
'
).
menu
(
'
show
'
,
{
left
:
e
.
pageX
,
top
:
e
.
pageY
});
});
});
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/menu/events.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Menu Events - 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>
Menu Events
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Right click on page to display menu and click an item.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
id=
"mm"
class=
"easyui-menu"
data-options=
"onClick:menuHandler"
style=
"width:120px;"
>
<div
data-options=
"name:'new'"
>
New
</div>
<div
data-options=
"name:'save',iconCls:'icon-save'"
>
Save
</div>
<div
data-options=
"name:'print',iconCls:'icon-print'"
>
Print
</div>
<div
class=
"menu-sep"
></div>
<div
data-options=
"name:'exit'"
>
Exit
</div>
</div>
<script>
function
menuHandler
(
item
){
alert
(
item
.
name
);
}
$
(
function
(){
$
(
document
).
bind
(
'
contextmenu
'
,
function
(
e
){
e
.
preventDefault
();
$
(
'
#mm
'
).
menu
(
'
show
'
,
{
left
:
e
.
pageX
,
top
:
e
.
pageY
});
});
});
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/menubutton/actions.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
MenuButton Actions - 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>
MenuButton Actions
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click the buttons below to perform actions.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"$('#btn-edit').menubutton('disable')"
>
Disable Edit
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"$('#btn-edit').menubutton('enable')"
>
Enable Edit
</a>
</div>
<div
style=
"padding:5px;border:1px solid #ddd"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true"
>
Home
</a>
<a
id=
"btn-edit"
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm1',iconCls:'icon-edit'"
>
Edit
</a>
<a
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm2',iconCls:'icon-help'"
>
Help
</a>
<a
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm3'"
>
About
</a>
</div>
<div
id=
"mm1"
style=
"width:150px;"
>
<div
data-options=
"iconCls:'icon-undo'"
>
Undo
</div>
<div
data-options=
"iconCls:'icon-redo'"
>
Redo
</div>
<div
class=
"menu-sep"
></div>
<div>
Cut
</div>
<div>
Copy
</div>
<div>
Paste
</div>
<div
class=
"menu-sep"
></div>
<div>
<span>
Toolbar
</span>
<div
style=
"width:150px;"
>
<div>
Address
</div>
<div>
Link
</div>
<div>
Navigation Toolbar
</div>
<div>
Bookmark Toolbar
</div>
<div
class=
"menu-sep"
></div>
<div>
New Toolbar...
</div>
</div>
</div>
<div
data-options=
"iconCls:'icon-remove'"
>
Delete
</div>
<div>
Select All
</div>
</div>
<div
id=
"mm2"
style=
"width:100px;"
>
<div>
Help
</div>
<div>
Update
</div>
<div>
About
</div>
</div>
<div
id=
"mm3"
class=
"menu-content"
style=
"background:#f0f0f0;padding:10px;text-align:left"
>
<img
src=
"http://www.jeasyui.com/images/logo1.png"
style=
"width:150px;height:50px"
>
<p
style=
"font-size:14px;color:#444;"
>
Try jQuery EasyUI to build your modern, interactive, javascript applications.
</p>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/menubutton/basic.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic MenuButton - 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 MenuButton
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Move mouse over the button to drop down menu.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
style=
"padding:5px;border:1px solid #ddd"
>
<a
href=
"#"
class=
"easyui-linkbutton"
data-options=
"plain:true"
>
Home
</a>
<a
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm1',iconCls:'icon-edit'"
>
Edit
</a>
<a
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm2',iconCls:'icon-help'"
>
Help
</a>
<a
href=
"#"
class=
"easyui-menubutton"
data-options=
"menu:'#mm3'"
>
About
</a>
</div>
<div
id=
"mm1"
style=
"width:150px;"
>
<div
data-options=
"iconCls:'icon-undo'"
>
Undo
</div>
<div
data-options=
"iconCls:'icon-redo'"
>
Redo
</div>
<div
class=
"menu-sep"
></div>
<div>
Cut
</div>
<div>
Copy
</div>
<div>
Paste
</div>
<div
class=
"menu-sep"
></div>
<div>
<span>
Toolbar
</span>
<div
style=
"width:150px;"
>
<div>
Address
</div>
<div>
Link
</div>
<div>
Navigation Toolbar
</div>
<div>
Bookmark Toolbar
</div>
<div
class=
"menu-sep"
></div>
<div>
New Toolbar...
</div>
</div>
</div>
<div
data-options=
"iconCls:'icon-remove'"
>
Delete
</div>
<div>
Select All
</div>
</div>
<div
id=
"mm2"
style=
"width:100px;"
>
<div>
Help
</div>
<div>
Update
</div>
<div>
About
</div>
</div>
<div
id=
"mm3"
class=
"menu-content"
style=
"background:#f0f0f0;padding:10px;text-align:left"
>
<img
src=
"http://www.jeasyui.com/images/logo1.png"
style=
"width:150px;height:50px"
>
<p
style=
"font-size:14px;color:#444;"
>
Try jQuery EasyUI to build your modern, interactive, javascript applications.
</p>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/messager/alert.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Alert Messager - 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>
Alert Messager
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click on each button to display different alert message box.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"alert1()"
>
Alert
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"alert2()"
>
Error
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"alert3()"
>
Info
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"alert4()"
>
Question
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"alert5()"
>
Warning
</a>
</div>
<script>
function
alert1
(){
$
.
messager
.
alert
(
'
My Title
'
,
'
Here is a message!
'
);
}
function
alert2
(){
$
.
messager
.
alert
(
'
My Title
'
,
'
Here is a error message!
'
,
'
error
'
);
}
function
alert3
(){
$
.
messager
.
alert
(
'
My Title
'
,
'
Here is a info message!
'
,
'
info
'
);
}
function
alert4
(){
$
.
messager
.
alert
(
'
My Title
'
,
'
Here is a question message!
'
,
'
question
'
);
}
function
alert5
(){
$
.
messager
.
alert
(
'
My Title
'
,
'
Here is a warning message!
'
,
'
warning
'
);
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/messager/basic.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic Messager - 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 Messager
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click on each button to see a distinct message box.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"show()"
>
Show
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"slide()"
>
Slide
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"fade()"
>
Fade
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"progress()"
>
Progress
</a>
</div>
<script
type=
"text/javascript"
>
function
show
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
Message will be closed after 4 seconds.
'
,
showType
:
'
show
'
});
}
function
slide
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
Message will be closed after 5 seconds.
'
,
timeout
:
5000
,
showType
:
'
slide
'
});
}
function
fade
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
Message never be closed.
'
,
timeout
:
0
,
showType
:
'
fade
'
});
}
function
progress
(){
var
win
=
$
.
messager
.
progress
({
title
:
'
Please waiting
'
,
msg
:
'
Loading data...
'
});
setTimeout
(
function
(){
$
.
messager
.
progress
(
'
close
'
);
},
5000
)
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/messager/interactive.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Interactive Messager - 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>
Interactive Messager
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click on each button to display interactive message box.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"confirm1();"
>
Confirm
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"prompt1()"
>
Prompt
</a>
</div>
<script>
function
confirm1
(){
$
.
messager
.
confirm
(
'
My Title
'
,
'
Are you confirm this?
'
,
function
(
r
){
if
(
r
){
alert
(
'
confirmed:
'
+
r
);
}
});
}
function
prompt1
(){
$
.
messager
.
prompt
(
'
My Title
'
,
'
Please type something
'
,
function
(
r
){
if
(
r
){
alert
(
'
you type:
'
+
r
);
}
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/messager/position.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Message Box Position - 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>
Message Box Position
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click the buttons below to display message box on different position.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<p>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"topLeft();"
>
TopLeft
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"topCenter()"
>
TopCenter
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"topRight()"
>
TopRight
</a>
</p>
<p>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"centerLeft()"
>
CenterLeft
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"center()"
>
Center
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"centerRight()"
>
CenterRight
</a>
</p>
<p>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"bottomLeft()"
>
BottomLeft
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"bottomCenter()"
>
BottomCenter
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"bottomRight()"
>
BottomRight
</a>
</p>
</div>
<script>
function
topLeft
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
show
'
,
style
:{
right
:
''
,
left
:
0
,
top
:
document
.
body
.
scrollTop
+
document
.
documentElement
.
scrollTop
,
bottom
:
''
}
});
}
function
topCenter
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
slide
'
,
style
:{
right
:
''
,
top
:
document
.
body
.
scrollTop
+
document
.
documentElement
.
scrollTop
,
bottom
:
''
}
});
}
function
topRight
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
show
'
,
style
:{
left
:
''
,
right
:
0
,
top
:
document
.
body
.
scrollTop
+
document
.
documentElement
.
scrollTop
,
bottom
:
''
}
});
}
function
centerLeft
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
fade
'
,
style
:{
left
:
0
,
right
:
''
,
bottom
:
''
}
});
}
function
center
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
fade
'
,
style
:{
right
:
''
,
bottom
:
''
}
});
}
function
centerRight
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
fade
'
,
style
:{
left
:
''
,
right
:
0
,
bottom
:
''
}
});
}
function
bottomLeft
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
show
'
,
style
:{
left
:
0
,
right
:
''
,
top
:
''
,
bottom
:
-
document
.
body
.
scrollTop
-
document
.
documentElement
.
scrollTop
}
});
}
function
bottomCenter
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
slide
'
,
style
:{
right
:
''
,
top
:
''
,
bottom
:
-
document
.
body
.
scrollTop
-
document
.
documentElement
.
scrollTop
}
});
}
function
bottomRight
(){
$
.
messager
.
show
({
title
:
'
My Title
'
,
msg
:
'
The message content
'
,
showType
:
'
show
'
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberbox/basic.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic NumberBox - 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 NumberBox
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The Box can only input number.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<input
class=
"easyui-numberbox"
required
data-options=
"
onChange: function(value){
$('#vv').text(value);
}"
>
<div
style=
"margin:10px 0;"
>
Value:
<span
id=
"vv"
></span>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberbox/format.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Format NumberBox - 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>
Format NumberBox
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Number formatting is the ability to control how a number is displayed.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<table>
<tr>
<td>
Number in the United States
</td>
<td><input
class=
"easyui-numberbox"
value=
"1234567.89"
data-options=
"precision:2,groupSeparator:','"
></input></td>
</tr>
<tr>
<td>
Number in France
</td>
<td><input
class=
"easyui-numberbox"
value=
"1234567.89"
data-options=
"precision:2,groupSeparator:' ',decimalSeparator:','"
></input></td>
</tr>
<tr>
<td>
Currency:USD
</td>
<td><input
class=
"easyui-numberbox"
value=
"1234567.89"
data-options=
"precision:2,groupSeparator:',',decimalSeparator:'.',prefix:'$'"
></input></td>
</tr>
<tr>
<td>
Currency:EUR
</td>
<td><input
class=
"easyui-numberbox"
value=
"1234567.89"
data-options=
"precision:2,groupSeparator:',',decimalSeparator:' ',prefix:'€'"
></input></td>
</tr>
<tr>
<td></td>
<td><input
class=
"easyui-numberbox"
value=
"1234567.89"
data-options=
"precision:2,groupSeparator:' ',decimalSeparator:',',suffix:'€'"
></input></td>
</tr>
</table>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberbox/range.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Number Range - 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>
Number Range
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The value is constrained to a range between 10 and 90.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<input
class=
"easyui-numberbox"
data-options=
"min:10,max:90,precision:2,required:true"
>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberspinner/basic.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic NumberSpinner - 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 NumberSpinner
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click spinner button to change value.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<input
class=
"easyui-numberspinner"
style=
"width:80px;"
data-options=
"
onChange: function(value){
$('#vv').text(value);
}
"
></input>
<div
style=
"margin:10px 0;"
>
Value:
<span
id=
"vv"
></span>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberspinner/increment.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Increment Number - 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>
Increment Number
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The sample shows how to set the increment step.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<input
class=
"easyui-numberspinner"
value=
"1000"
data-options=
"increment:100"
style=
"width:120px;"
></input>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/numberspinner/range.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Number Range - 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>
Number Range
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The value is constrained to a range between 10 and 100.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<input
class=
"easyui-numberspinner"
data-options=
"min:10,max:100,required:true"
style=
"width:80px;"
></input>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui-1.3.5/demo/pagination/attaching.html
0 → 100644
View file @
91a6b722
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Attaching Other Components - 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>
Attaching Other Components
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Any other components can be attached to page bar.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
class=
"easyui-pagination"
data-options=
"showPageList:false,total:114,buttons:$('#buttons')"
style=
"border:1px solid #ddd;"
></div>
<div
id=
"buttons"
>
<table
style=
"border-spacing:0"
>
<tr>
<td>
<input
class=
"easyui-searchbox"
style=
"width:150px"
>
</td>
<td>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
data-options=
"iconCls:'icon-save',plain:true"
></a>
</td>
</tr>
</table>
</div>
</body>
</html>
\ No newline at end of file
Prev
1
…
19
20
21
22
23
24
25
26
27
…
36
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment