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
76a0033a
Commit
76a0033a
authored
Apr 07, 2021
by
季圣华
Browse files
清空旧版本
parent
df57ada9
Changes
644
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 644+
files are displayed.
Plain diff
Email patch
erp_web/js/easyui/demo/calendar/disabledate.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Disable Calendar Date - 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>
Disable Calendar Date
</h2>
<p>
This example shows how to disable specified dates, only allows the user to select Mondays.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-calendar"
style=
"width:250px;height:250px;"
data-options=
"
validator: function(date){
if (date.getDay() == 1){
return true;
} else {
return false;
}
}
"
></div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/calendar/firstday.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
First Day of Week - 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>
First Day of Week
</h2>
<p>
Choose the first day of the week.
</p>
<div
style=
"margin:20px 0"
>
<select
onchange=
"$('#cc').calendar({firstDay:this.value})"
>
<option
value=
"0"
>
Sunday
</option>
<option
value=
"1"
>
Monday
</option>
<option
value=
"2"
>
Tuesday
</option>
<option
value=
"3"
>
Wednesday
</option>
<option
value=
"4"
>
Thursday
</option>
<option
value=
"5"
>
Friday
</option>
<option
value=
"6"
>
Saturday
</option>
</select>
</div>
<div
id=
"cc"
class=
"easyui-calendar"
style=
"width:250px;height:250px;"
></div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/calendar/fluid.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Fluid Calendar - 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 Calendar
</h2>
<p>
This example shows how to set the width of calendar to a percentage of its parent container.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:700px;padding:10px"
>
<p>
width: 50%, height: 250px
</p>
<div
class=
"easyui-calendar"
style=
"width:50%;height:250px;"
></div>
<p>
width: 30%, height: 40%
</p>
<div
class=
"easyui-calendar"
style=
"width:30%;height:40%;"
></div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/calendar/weeknumber.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Week Number on Calendar - 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>
Week Number on Calendar
</h2>
<p>
This example shows how to display the week number on calendar.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-calendar"
showWeek=
"true"
weekNumberHeader=
"Wk"
style=
"width:250px;height:250px;"
></div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/checkbox/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic CheckBox - 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 CheckBox
</h2>
<form
id=
"ff"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-checkbox"
name=
"fruit"
value=
"Apple"
label=
"Apple:"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-checkbox"
name=
"fruit"
value=
"Orange"
label=
"Orange:"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-checkbox"
name=
"fruit"
value=
"Banana"
label=
"Banana:"
>
</div>
</form>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combo/animation.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Combo Animation - 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>
Combo Animation
</h2>
<p>
Change the animation type when open
&
close the drop-down panel.
</p>
<div
style=
"margin:20px 0"
>
<span>
Animation Type:
</span>
<select
onchange=
"changeAnimation(this.value)"
>
<option>
slide
</option>
<option>
fade
</option>
<option>
show
</option>
</select>
</div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
id=
"cc"
label=
"Animation:"
labelPosition=
"top"
style=
"width:100%;"
>
</div>
</div>
<script
type=
"text/javascript"
>
$
(
function
(){
$
(
'
#cc
'
).
combo
();
changeAnimation
(
'
slide
'
);
});
function
changeAnimation
(
atype
){
$
(
'
#cc
'
).
combo
(
'
panel
'
).
panel
({
openAnimation
:
atype
,
closeAnimation
:(
atype
==
'
show
'
?
'
hide
'
:
atype
)
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combo/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic Combo - 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 Combo
</h2>
<p>
Click the right arrow button to show drop down panel that can be filled with any content.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
id=
"cc"
style=
"width:100%;"
>
</div>
</div>
<div
id=
"sp"
>
<div
style=
"line-height:22px;background:#fafafa;padding:5px;"
>
Select a language
</div>
<div
style=
"padding:10px"
>
<input
type=
"radio"
name=
"lang"
value=
"01"
><span>
Java
</span><br/>
<input
type=
"radio"
name=
"lang"
value=
"02"
><span>
C#
</span><br/>
<input
type=
"radio"
name=
"lang"
value=
"03"
><span>
Ruby
</span><br/>
<input
type=
"radio"
name=
"lang"
value=
"04"
><span>
Basic
</span><br/>
<input
type=
"radio"
name=
"lang"
value=
"05"
><span>
Fortran
</span>
</div>
</div>
<script
type=
"text/javascript"
>
$
(
function
(){
$
(
'
#cc
'
).
combo
({
required
:
true
,
editable
:
false
,
label
:
'
Language:
'
,
labelPosition
:
'
top
'
});
$
(
'
#sp
'
).
appendTo
(
$
(
'
#cc
'
).
combo
(
'
panel
'
));
$
(
'
#sp input
'
).
click
(
function
(){
var
v
=
$
(
this
).
val
();
var
s
=
$
(
this
).
next
(
'
span
'
).
text
();
$
(
'
#cc
'
).
combo
(
'
setValue
'
,
v
).
combo
(
'
setText
'
,
s
).
combo
(
'
hidePanel
'
);
});
});
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/actions.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
ComboBox 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>
ComboBox
</h2>
<p>
Click the buttons below to perform actions.
</p>
<div
style=
"margin:20px 0;"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"setvalue()"
>
SetValue
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"alert($('#state').combobox('getValue'))"
>
GetValue
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"$('#state').combobox('disable')"
>
Disable
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"$('#state').combobox('enable')"
>
Enable
</a>
</div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<select
id=
"state"
class=
"easyui-combobox"
name=
"state"
label=
"State:"
labelPosition=
"top"
style=
"width:100%;"
>
<option
value=
"AL"
>
Alabama
</option>
<option
value=
"AK"
>
Alaska
</option>
<option
value=
"AZ"
>
Arizona
</option>
<option
value=
"AR"
>
Arkansas
</option>
<option
value=
"CA"
>
California
</option>
<option
value=
"CO"
>
Colorado
</option>
<option
value=
"CT"
>
Connecticut
</option>
<option
value=
"DE"
>
Delaware
</option>
<option
value=
"FL"
>
Florida
</option>
<option
value=
"GA"
>
Georgia
</option>
<option
value=
"HI"
>
Hawaii
</option>
<option
value=
"ID"
>
Idaho
</option>
<option
value=
"IL"
>
Illinois
</option>
<option
value=
"IN"
>
Indiana
</option>
<option
value=
"IA"
>
Iowa
</option>
<option
value=
"KS"
>
Kansas
</option>
<option
value=
"KY"
>
Kentucky
</option>
<option
value=
"LA"
>
Louisiana
</option>
<option
value=
"ME"
>
Maine
</option>
<option
value=
"MD"
>
Maryland
</option>
<option
value=
"MA"
>
Massachusetts
</option>
<option
value=
"MI"
>
Michigan
</option>
<option
value=
"MN"
>
Minnesota
</option>
<option
value=
"MS"
>
Mississippi
</option>
<option
value=
"MO"
>
Missouri
</option>
<option
value=
"MT"
>
Montana
</option>
<option
value=
"NE"
>
Nebraska
</option>
<option
value=
"NV"
>
Nevada
</option>
<option
value=
"NH"
>
New Hampshire
</option>
<option
value=
"NJ"
>
New Jersey
</option>
<option
value=
"NM"
>
New Mexico
</option>
<option
value=
"NY"
>
New York
</option>
<option
value=
"NC"
>
North Carolina
</option>
<option
value=
"ND"
>
North Dakota
</option>
<option
value=
"OH"
selected
>
Ohio
</option>
<option
value=
"OK"
>
Oklahoma
</option>
<option
value=
"OR"
>
Oregon
</option>
<option
value=
"PA"
>
Pennsylvania
</option>
<option
value=
"RI"
>
Rhode Island
</option>
<option
value=
"SC"
>
South Carolina
</option>
<option
value=
"SD"
>
South Dakota
</option>
<option
value=
"TN"
>
Tennessee
</option>
<option
value=
"TX"
>
Texas
</option>
<option
value=
"UT"
>
Utah
</option>
<option
value=
"VT"
>
Vermont
</option>
<option
value=
"VA"
>
Virginia
</option>
<option
value=
"WA"
>
Washington
</option>
<option
value=
"WV"
>
West Virginia
</option>
<option
value=
"WI"
>
Wisconsin
</option>
<option
value=
"WY"
>
Wyoming
</option>
</select>
</div>
</div>
<script
type=
"text/javascript"
>
function
setvalue
(){
$
.
messager
.
prompt
(
'
SetValue
'
,
'
Please input the value(CO,NV,UT,etc):
'
,
function
(
v
){
if
(
v
){
$
(
'
#state
'
).
combobox
(
'
setValue
'
,
v
);
}
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic ComboBox - 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 ComboBox
</h2>
<p>
Type in ComboBox to try auto complete.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<select
class=
"easyui-combobox"
name=
"state"
label=
"State:"
labelPosition=
"top"
style=
"width:100%;"
>
<option
value=
"AL"
>
Alabama
</option>
<option
value=
"AK"
>
Alaska
</option>
<option
value=
"AZ"
>
Arizona
</option>
<option
value=
"AR"
>
Arkansas
</option>
<option
value=
"CA"
>
California
</option>
<option
value=
"CO"
>
Colorado
</option>
<option
value=
"CT"
>
Connecticut
</option>
<option
value=
"DE"
>
Delaware
</option>
<option
value=
"FL"
>
Florida
</option>
<option
value=
"GA"
>
Georgia
</option>
<option
value=
"HI"
>
Hawaii
</option>
<option
value=
"ID"
>
Idaho
</option>
<option
value=
"IL"
>
Illinois
</option>
<option
value=
"IN"
>
Indiana
</option>
<option
value=
"IA"
>
Iowa
</option>
<option
value=
"KS"
>
Kansas
</option>
<option
value=
"KY"
>
Kentucky
</option>
<option
value=
"LA"
>
Louisiana
</option>
<option
value=
"ME"
>
Maine
</option>
<option
value=
"MD"
>
Maryland
</option>
<option
value=
"MA"
>
Massachusetts
</option>
<option
value=
"MI"
>
Michigan
</option>
<option
value=
"MN"
>
Minnesota
</option>
<option
value=
"MS"
>
Mississippi
</option>
<option
value=
"MO"
>
Missouri
</option>
<option
value=
"MT"
>
Montana
</option>
<option
value=
"NE"
>
Nebraska
</option>
<option
value=
"NV"
>
Nevada
</option>
<option
value=
"NH"
>
New Hampshire
</option>
<option
value=
"NJ"
>
New Jersey
</option>
<option
value=
"NM"
>
New Mexico
</option>
<option
value=
"NY"
>
New York
</option>
<option
value=
"NC"
>
North Carolina
</option>
<option
value=
"ND"
>
North Dakota
</option>
<option
value=
"OH"
selected
>
Ohio
</option>
<option
value=
"OK"
>
Oklahoma
</option>
<option
value=
"OR"
>
Oregon
</option>
<option
value=
"PA"
>
Pennsylvania
</option>
<option
value=
"RI"
>
Rhode Island
</option>
<option
value=
"SC"
>
South Carolina
</option>
<option
value=
"SD"
>
South Dakota
</option>
<option
value=
"TN"
>
Tennessee
</option>
<option
value=
"TX"
>
Texas
</option>
<option
value=
"UT"
>
Utah
</option>
<option
value=
"VT"
>
Vermont
</option>
<option
value=
"VA"
>
Virginia
</option>
<option
value=
"WA"
>
Washington
</option>
<option
value=
"WV"
>
West Virginia
</option>
<option
value=
"WI"
>
Wisconsin
</option>
<option
value=
"WY"
>
Wyoming
</option>
</select>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/combobox_data1.json
deleted
100644 → 0
View file @
df57ada9
[{
"id"
:
1
,
"text"
:
"Java"
,
"desc"
:
"Write once, run anywhere"
},{
"id"
:
2
,
"text"
:
"C#"
,
"desc"
:
"One of the programming languages designed for the Common Language Infrastructure"
},{
"id"
:
3
,
"text"
:
"Ruby"
,
"selected"
:
true
,
"desc"
:
"A dynamic, reflective, general-purpose object-oriented programming language"
},{
"id"
:
4
,
"text"
:
"Perl"
,
"desc"
:
"A high-level, general-purpose, interpreted, dynamic programming language"
},{
"id"
:
5
,
"text"
:
"Basic"
,
"desc"
:
"A family of general-purpose, high-level programming languages"
}]
\ No newline at end of file
erp_web/js/easyui/demo/combobox/combobox_data2.json
deleted
100644 → 0
View file @
df57ada9
[{
"value"
:
"f20"
,
"text"
:
"Firefox 2.0 or higher"
,
"group"
:
"Firefox"
},{
"value"
:
"f15"
,
"text"
:
"Firefox 1.5.x"
,
"group"
:
"Firefox"
},{
"value"
:
"f10"
,
"text"
:
"Firefox 1.0.x"
,
"group"
:
"Firefox"
},{
"value"
:
"ie7"
,
"text"
:
"Microsoft Internet Explorer 7.0 or higher"
,
"group"
:
"Microsoft Internet Explorer"
},{
"value"
:
"ie6"
,
"text"
:
"Microsoft Internet Explorer 6.x"
,
"group"
:
"Microsoft Internet Explorer"
},{
"value"
:
"ie5"
,
"text"
:
"Microsoft Internet Explorer 5.x"
,
"group"
:
"Microsoft Internet Explorer"
},{
"value"
:
"ie4"
,
"text"
:
"Microsoft Internet Explorer 4.x"
,
"group"
:
"Microsoft Internet Explorer"
},{
"value"
:
"op9"
,
"text"
:
"Opera 9.0 or higher"
,
"group"
:
"Opera"
},{
"value"
:
"op8"
,
"text"
:
"Opera 8.x"
,
"group"
:
"Opera"
},{
"value"
:
"op7"
,
"text"
:
"Opera 7.x"
,
"group"
:
"Opera"
},{
"value"
:
"Safari"
,
"text"
:
"Safari"
},{
"value"
:
"Other"
,
"text"
:
"Other"
}]
\ No newline at end of file
erp_web/js/easyui/demo/combobox/customformat.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Custom Format in ComboBox - 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 Format in ComboBox
</h2>
<p>
This sample shows how to custom the format of list item.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
name=
"language"
style=
"width:100%;"
data-options=
"
url: 'combobox_data1.json',
method: 'get',
valueField: 'id',
textField: 'text',
panelWidth: 350,
panelHeight: 'auto',
formatter: formatItem,
label: 'Language:',
labelPosition: 'top'
"
>
</div>
</div>
<script
type=
"text/javascript"
>
function
formatItem
(
row
){
var
s
=
'
<span style="font-weight:bold">
'
+
row
.
text
+
'
</span><br/>
'
+
'
<span style="color:#888">
'
+
row
.
desc
+
'
</span>
'
;
return
s
;
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/dynamicdata.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Load Dynamic ComboBox Data - 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 Dynamic ComboBox Data
</h2>
<p>
Click the button below to load data.
</p>
<div
style=
"margin:20px 0;"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"$('#language').combobox('reload', 'combobox_data1.json')"
>
LoadData
</a>
</div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
id=
"language"
class=
"easyui-combobox"
name=
"language"
style=
"width:100%;"
data-options=
"
valueField: 'id',
textField: 'text',
label: 'Language:',
labelPosition: 'top'
"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/fluid.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Fluid ComboBox - 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 ComboBox
</h2>
<p>
This example shows how to set the width of combobox to a percentage of its parent container.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
name=
"language"
style=
"width:100%;"
data-options=
"
url: 'combobox_data2.json',
method: 'get',
valueField:'value',
textField:'text',
groupField:'group',
label: 'width: 100%',
labelPosition: 'top'
"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
name=
"language"
style=
"width:50%;"
data-options=
"
url: 'combobox_data2.json',
method: 'get',
valueField:'value',
textField:'text',
groupField:'group',
label: 'width: 50%',
labelPosition: 'top'
"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/group.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Group ComboBox - 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>
Group ComboBox
</h2>
<p>
This example shows how to display combobox items in groups.
</p>
<div
style=
"margin:20px 0"
>
<input
type=
"checkbox"
onchange=
"$('#cc').combobox({groupPosition:$(this).is(':checked')?'sticky':'static'})"
>
<span>
Sticky Group
</span>
</div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
id=
"cc"
class=
"easyui-combobox"
name=
"browser"
style=
"width:100%;"
data-options=
"
url: 'combobox_data2.json',
method: 'get',
valueField:'value',
textField:'text',
groupField:'group',
label: 'Browser:',
labelPosition: 'top'
"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/icons.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
ComboBox with Extra Icons- 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>
ComboBox with Extra Icons
</h2>
<p>
The user can attach extra icons to the ComboBox.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
name=
"language"
style=
"width:100%;"
data-options=
"
url:'combobox_data1.json',
method:'get',
valueField:'id',
textField:'text',
panelHeight:'auto',
iconWidth:22,
icons:[{
iconCls:'icon-add'
},{
iconCls:'icon-cut'
}],
label: 'Language:',
labelPosition: 'top'
"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/itemicon.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Show Item Icon in ComboBox - 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>
Show Item Icon in ComboBox
</h2>
<p>
This example shows how to display item icon in ComboBox.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
style=
"width:100%;"
data-options=
"
showItemIcon: true,
data: [
{value:'add',text:'Add',iconCls:'icon-add'},
{value:'del',text:'Delete',iconCls:'icon-remove'},
{value:'save',text:'Save',iconCls:'icon-save',selected:true},
{value:'cancel',text:'Cancel',iconCls:'icon-cancel'},
{value:'undo',text:'Undo',iconCls:'icon-undo'},
{value:'redo',text:'Redo',iconCls:'icon-redo'}
],
editable: false,
panelHeight: 'auto',
label: 'Perform Action:',
labelPosition: 'top'
"
>
</div>
</div>
</body>
erp_web/js/easyui/demo/combobox/multiline.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Multiline ComboBox - 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>
Multiline ComboBox
</h2>
<p>
This example shows how to create a multiline ComboBox.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<select
class=
"easyui-combobox"
name=
"state"
multiple=
"true"
multiline=
"true"
label=
"Select States:"
labelPosition=
"top"
style=
"width:100%;height:100px;"
>
<option
value=
"AL"
>
Alabama
</option>
<option
value=
"AK"
>
Alaska
</option>
<option
value=
"AZ"
>
Arizona
</option>
<option
value=
"AR"
>
Arkansas
</option>
<option
value=
"CA"
>
California
</option>
<option
value=
"CO"
>
Colorado
</option>
<option
value=
"CT"
selected
>
Connecticut
</option>
<option
value=
"DE"
>
Delaware
</option>
<option
value=
"FL"
>
Florida
</option>
<option
value=
"GA"
>
Georgia
</option>
<option
value=
"HI"
>
Hawaii
</option>
<option
value=
"ID"
>
Idaho
</option>
<option
value=
"IL"
>
Illinois
</option>
<option
value=
"IN"
>
Indiana
</option>
<option
value=
"IA"
>
Iowa
</option>
<option
value=
"KS"
>
Kansas
</option>
<option
value=
"KY"
>
Kentucky
</option>
<option
value=
"LA"
selected
>
Louisiana
</option>
<option
value=
"ME"
>
Maine
</option>
<option
value=
"MD"
>
Maryland
</option>
<option
value=
"MA"
selected
>
Massachusetts
</option>
<option
value=
"MI"
>
Michigan
</option>
<option
value=
"MN"
>
Minnesota
</option>
<option
value=
"MS"
>
Mississippi
</option>
<option
value=
"MO"
>
Missouri
</option>
<option
value=
"MT"
>
Montana
</option>
<option
value=
"NE"
>
Nebraska
</option>
<option
value=
"NV"
>
Nevada
</option>
<option
value=
"NH"
>
New Hampshire
</option>
<option
value=
"NJ"
>
New Jersey
</option>
<option
value=
"NM"
>
New Mexico
</option>
<option
value=
"NY"
>
New York
</option>
<option
value=
"NC"
>
North Carolina
</option>
<option
value=
"ND"
>
North Dakota
</option>
<option
value=
"OH"
selected
>
Ohio
</option>
<option
value=
"OK"
>
Oklahoma
</option>
<option
value=
"OR"
selected
>
Oregon
</option>
<option
value=
"PA"
>
Pennsylvania
</option>
<option
value=
"RI"
>
Rhode Island
</option>
<option
value=
"SC"
>
South Carolina
</option>
<option
value=
"SD"
>
South Dakota
</option>
<option
value=
"TN"
>
Tennessee
</option>
<option
value=
"TX"
>
Texas
</option>
<option
value=
"UT"
>
Utah
</option>
<option
value=
"VT"
>
Vermont
</option>
<option
value=
"VA"
>
Virginia
</option>
<option
value=
"WA"
>
Washington
</option>
<option
value=
"WV"
>
West Virginia
</option>
<option
value=
"WI"
>
Wisconsin
</option>
<option
value=
"WY"
>
Wyoming
</option>
</select>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/multiple.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Multiple Select - 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 Dynamic ComboBox Data
</h2>
<p>
Drop down the panel and select multiple items.
</p>
<div
style=
"margin:20px 0"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-combobox"
name=
"language[]"
style=
"width:100%;"
data-options=
"
url:'combobox_data1.json',
method:'get',
valueField:'id',
textField:'text',
value:[1,3],
multiple:true,
panelHeight:'auto',
label: 'Language:',
labelPosition: 'top'
"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/combobox/navigation.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Navigate ComboBox - 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>
Navigate ComboBox
</h2>
<p>
Navigate through combobox items width keyboard to select an item.
</p>
<div
style=
"margin:20px 0;"
>
<input
type=
"checkbox"
checked
onchange=
"$('#cc').combobox({selectOnNavigation:$(this).is(':checked')})"
>
<span>
SelectOnNavigation
</span>
</div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<select
id=
"cc"
class=
"easyui-combobox"
name=
"state"
label=
"State:"
labelPosition=
"top"
style=
"width:100%;"
>
<option
value=
"AL"
>
Alabama
</option>
<option
value=
"AK"
>
Alaska
</option>
<option
value=
"AZ"
>
Arizona
</option>
<option
value=
"AR"
>
Arkansas
</option>
<option
value=
"CA"
>
California
</option>
<option
value=
"CO"
>
Colorado
</option>
<option
value=
"CT"
>
Connecticut
</option>
<option
value=
"DE"
>
Delaware
</option>
<option
value=
"FL"
>
Florida
</option>
<option
value=
"GA"
>
Georgia
</option>
<option
value=
"HI"
>
Hawaii
</option>
<option
value=
"ID"
>
Idaho
</option>
<option
value=
"IL"
>
Illinois
</option>
<option
value=
"IN"
>
Indiana
</option>
<option
value=
"IA"
>
Iowa
</option>
<option
value=
"KS"
>
Kansas
</option>
<option
value=
"KY"
>
Kentucky
</option>
<option
value=
"LA"
>
Louisiana
</option>
<option
value=
"ME"
>
Maine
</option>
<option
value=
"MD"
>
Maryland
</option>
<option
value=
"MA"
>
Massachusetts
</option>
<option
value=
"MI"
>
Michigan
</option>
<option
value=
"MN"
>
Minnesota
</option>
<option
value=
"MS"
>
Mississippi
</option>
<option
value=
"MO"
>
Missouri
</option>
<option
value=
"MT"
>
Montana
</option>
<option
value=
"NE"
>
Nebraska
</option>
<option
value=
"NV"
>
Nevada
</option>
<option
value=
"NH"
>
New Hampshire
</option>
<option
value=
"NJ"
>
New Jersey
</option>
<option
value=
"NM"
>
New Mexico
</option>
<option
value=
"NY"
>
New York
</option>
<option
value=
"NC"
>
North Carolina
</option>
<option
value=
"ND"
>
North Dakota
</option>
<option
value=
"OK"
>
Oklahoma
</option>
<option
value=
"OR"
>
Oregon
</option>
<option
value=
"PA"
>
Pennsylvania
</option>
<option
value=
"RI"
>
Rhode Island
</option>
<option
value=
"SC"
>
South Carolina
</option>
<option
value=
"SD"
>
South Dakota
</option>
<option
value=
"TN"
>
Tennessee
</option>
<option
value=
"TX"
>
Texas
</option>
<option
value=
"UT"
>
Utah
</option>
<option
value=
"VT"
>
Vermont
</option>
<option
value=
"VA"
>
Virginia
</option>
<option
value=
"WA"
>
Washington
</option>
<option
value=
"WV"
>
West Virginia
</option>
<option
value=
"WI"
>
Wisconsin
</option>
<option
value=
"WY"
>
Wyoming
</option>
</select>
</div>
</div>
</body>
</html>
\ No newline at end of file
Prev
1
…
12
13
14
15
16
17
18
19
20
…
33
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