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
9bad12b0
Commit
9bad12b0
authored
Feb 15, 2017
by
季圣华
Browse files
升级代码结构,采用Maven来管理jar包(13)
parent
63ca1df4
Changes
730
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 730+
files are displayed.
Plain diff
Email patch
src/main/webapp/js/easyui-1.3.5/demo/menu/customitem.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/menu/events.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/menubutton/actions.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/menubutton/basic.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/messager/alert.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/messager/basic.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/messager/interactive.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/messager/position.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberbox/basic.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberbox/format.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberbox/range.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberspinner/basic.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberspinner/increment.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/numberspinner/range.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/pagination/attaching.html
0 → 100644
View file @
9bad12b0
<!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
src/main/webapp/js/easyui-1.3.5/demo/pagination/basic.html
0 → 100644
View file @
9bad12b0
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic Pagination - 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 Pagination
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The user can change page number and page size on page bar.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
class=
"easyui-pagination"
data-options=
"total:114"
style=
"border:1px solid #ddd;"
></div>
</body>
</html>
\ No newline at end of file
src/main/webapp/js/easyui-1.3.5/demo/pagination/custombuttons.html
0 → 100644
View file @
9bad12b0
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Custom Pagination Buttons - 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 Pagination Buttons
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The customized buttons can be appended to page bar.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
class=
"easyui-pagination"
data-options=
"total:114,buttons:buttons"
style=
"border:1px solid #ddd;"
></div>
<script>
var
buttons
=
[{
iconCls
:
'
icon-add
'
,
handler
:
function
(){
alert
(
'
add
'
);
}
},{
iconCls
:
'
icon-cut
'
,
handler
:
function
(){
alert
(
'
cut
'
);
}
},{
iconCls
:
'
icon-save
'
,
handler
:
function
(){
alert
(
'
save
'
);
}
}];
</script>
</body>
</html>
\ No newline at end of file
src/main/webapp/js/easyui-1.3.5/demo/pagination/layout.html
0 → 100644
View file @
9bad12b0
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Pagination Layout - 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>
Pagination Layout
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The pagination layout supports various types of pages which you can choose.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
id=
"pp"
class=
"easyui-pagination"
style=
"border:1px solid #ddd;"
data-options=
"
total:114,
layout:['first','prev','next','last']
"
></div>
<div
style=
"margin-top:10px"
>
<select
onchange=
"setLayout(this.value)"
>
<option
value=
"1"
>
Previous Next
</option>
<option
value=
"2"
>
Manual Page Input
</option>
<option
value=
"3"
>
Numeric Links
</option>
<option
value=
"4"
>
Previous Links Next
</option>
<option
value=
"5"
>
Go To Page
</option>
</select>
</div>
<script>
function
setLayout
(
type
){
var
p
=
$
(
'
#pp
'
);
switch
(
parseInt
(
type
)){
case
1
:
p
.
pagination
({
layout
:[
'
first
'
,
'
prev
'
,
'
next
'
,
'
last
'
]});
break
;
case
2
:
p
.
pagination
({
layout
:[
'
list
'
,
'
sep
'
,
'
first
'
,
'
prev
'
,
'
sep
'
,
'
manual
'
,
'
sep
'
,
'
next
'
,
'
last
'
,
'
sep
'
,
'
refresh
'
],
beforePageText
:
'
Page
'
,
afterPageText
:
'
of {pages}
'
});
break
;
case
3
:
p
.
pagination
({
layout
:[
'
links
'
]});
break
;
case
4
:
p
.
pagination
({
layout
:[
'
first
'
,
'
prev
'
,
'
links
'
,
'
next
'
,
'
last
'
]});
break
;
case
5
:
p
.
pagination
({
layout
:[
'
first
'
,
'
prev
'
,
'
next
'
,
'
last
'
,
'
sep
'
,
'
links
'
,
'
sep
'
,
'
manual
'
],
beforePageText
:
'
Go Page
'
,
afterPageText
:
''
});
break
;
}
}
</script>
</body>
</html>
\ No newline at end of file
src/main/webapp/js/easyui-1.3.5/demo/pagination/links.html
0 → 100644
View file @
9bad12b0
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Pagination Links - 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>
Pagination Links
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The example shows how to customize numbered pagination links.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
class=
"easyui-pagination"
style=
"border:1px solid #ddd;"
data-options=
"
total:114,
layout:['list','sep','first','prev','links','next','last','sep','refresh']
"
></div>
</body>
</html>
\ No newline at end of file
src/main/webapp/js/easyui-1.3.5/demo/pagination/simple.html
0 → 100644
View file @
9bad12b0
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Simplify Pagination - 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>
Simplify Pagination
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
The sample shows how to simplify pagination.
</div>
</div>
<div
style=
"margin:10px 0;"
></div>
<div
class=
"easyui-pagination"
style=
"border:1px solid #ddd;"
data-options=
"
total: 114,
showPageList: false,
showRefresh: false,
displayMsg: ''
"
></div>
</body>
</html>
\ No newline at end of file
Prev
1
…
19
20
21
22
23
24
25
26
27
…
37
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