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
Show 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/easyloader/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic EasyLoader - 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=
"../../easyloader.js"
></script>
</head>
<body>
<h2>
Basic EasyLoader
</h2>
<div
class=
"demo-info"
>
<div
class=
"demo-tip icon-tip"
></div>
<div>
Click the buttons below to load components dynamically.
</div>
</div>
<div
style=
"margin:10px 0;"
>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"load1()"
>
Load Calendar
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"load2()"
>
Load Dialog
</a>
<a
href=
"#"
class=
"easyui-linkbutton"
onclick=
"load3()"
>
Load DataGrid
</a>
</div>
<div
id=
"cc"
></div>
<div
id=
"dd"
></div>
<table
id=
"tt"
></table>
<script
type=
"text/javascript"
src=
"../../easyloader.js"
></script>
<script>
function
load1
(){
using
(
'
calendar
'
,
function
(){
$
(
'
#cc
'
).
calendar
({
width
:
180
,
height
:
180
});
});
}
function
load2
(){
using
([
'
dialog
'
,
'
messager
'
],
function
(){
$
(
'
#dd
'
).
dialog
({
title
:
'
Dialog
'
,
width
:
300
,
height
:
200
});
$
.
messager
.
show
({
title
:
'
info
'
,
msg
:
'
dialog created
'
});
});
}
function
load3
(){
using
(
'
datagrid
'
,
function
(){
$
(
'
#tt
'
).
datagrid
({
title
:
'
DataGrid
'
,
width
:
300
,
height
:
200
,
fitColumns
:
true
,
columns
:[[
{
field
:
'
productid
'
,
title
:
'
Product ID
'
,
width
:
100
},
{
field
:
'
productname
'
,
title
:
'
Product Name
'
,
width
:
200
}
]],
data
:
[
{
"
productid
"
:
"
FI-SW-01
"
,
"
productname
"
:
"
Koi
"
},
{
"
productid
"
:
"
K9-DL-01
"
,
"
productname
"
:
"
Dalmation
"
},
{
"
productid
"
:
"
RP-SN-01
"
,
"
productname
"
:
"
Rattlesnake
"
},
{
"
productid
"
:
"
RP-LI-02
"
,
"
productname
"
:
"
Iguana
"
},
{
"
productid
"
:
"
FL-DSH-01
"
,
"
productname
"
:
"
Manx
"
},
{
"
productid
"
:
"
FL-DLH-02
"
,
"
productname
"
:
"
Persian
"
},
{
"
productid
"
:
"
AV-CB-01
"
,
"
productname
"
:
"
Amazon Parrot
"
}
]
});
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/filebox/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic FileBox - 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 FileBox
</h2>
<p>
The filebox component represents a file field of the forms.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-panel"
title=
"Upload File"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
label=
"Name:"
labelPosition=
"top"
style=
"width:100%"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-filebox"
label=
"File1:"
labelPosition=
"top"
data-options=
"prompt:'Choose a file...'"
style=
"width:100%"
>
</div>
<div
style=
"margin-bottom:40px"
>
<input
class=
"easyui-filebox"
label=
"File2:"
labelPosition=
"top"
data-options=
"prompt:'Choose another file...'"
style=
"width:100%"
>
</div>
<div>
<a
href=
"#"
class=
"easyui-linkbutton"
style=
"width:100%"
>
Upload
</a>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/filebox/buttonalign.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Button Align on FileBox - 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 Align on FileBox
</h2>
<p>
Change the button align to the left or right of filebox.
</p>
<div
style=
"margin:20px 0 40px 0;"
></div>
<span>
Select Button Align:
</span>
<select
onchange=
"changeAlign(this.value)"
>
<option
value=
"left"
>
Left
</option>
<option
value=
"right"
selected
>
Right
</option>
</select>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-panel"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<input
id=
"fb"
class=
"easyui-filebox"
style=
"width:100%"
data-options=
"prompt:'Choose a file...'"
>
</div>
<script
type=
"text/javascript"
>
function
changeAlign
(
align
){
$
(
'
#fb
'
).
filebox
({
buttonAlign
:
align
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/filebox/fluid.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Fluid FileBox - 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 FileBox
</h2>
<p>
This example shows how to set the width of FileBox 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-filebox"
label=
"width: 100%"
labelPosition=
"top"
style=
"width:100%"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-filebox"
label=
"width: 80%"
labelPosition=
"top"
style=
"width:80%"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/form/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic Form - 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 Form
</h2>
<p>
Fill the form and submit it.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-panel"
title=
"New Topic"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<form
id=
"ff"
method=
"post"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"name"
style=
"width:100%"
data-options=
"label:'Name:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"email"
style=
"width:100%"
data-options=
"label:'Email:',required:true,validType:'email'"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"subject"
style=
"width:100%"
data-options=
"label:'Subject:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"message"
style=
"width:100%;height:60px"
data-options=
"label:'Message:',multiline:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<select
class=
"easyui-combobox"
name=
"language"
label=
"Language"
style=
"width:100%"
><option
value=
"ar"
>
Arabic
</option><option
value=
"bg"
>
Bulgarian
</option><option
value=
"ca"
>
Catalan
</option><option
value=
"zh-cht"
>
Chinese Traditional
</option><option
value=
"cs"
>
Czech
</option><option
value=
"da"
>
Danish
</option><option
value=
"nl"
>
Dutch
</option><option
value=
"en"
selected=
"selected"
>
English
</option><option
value=
"et"
>
Estonian
</option><option
value=
"fi"
>
Finnish
</option><option
value=
"fr"
>
French
</option><option
value=
"de"
>
German
</option><option
value=
"el"
>
Greek
</option><option
value=
"ht"
>
Haitian Creole
</option><option
value=
"he"
>
Hebrew
</option><option
value=
"hi"
>
Hindi
</option><option
value=
"mww"
>
Hmong Daw
</option><option
value=
"hu"
>
Hungarian
</option><option
value=
"id"
>
Indonesian
</option><option
value=
"it"
>
Italian
</option><option
value=
"ja"
>
Japanese
</option><option
value=
"ko"
>
Korean
</option><option
value=
"lv"
>
Latvian
</option><option
value=
"lt"
>
Lithuanian
</option><option
value=
"no"
>
Norwegian
</option><option
value=
"fa"
>
Persian
</option><option
value=
"pl"
>
Polish
</option><option
value=
"pt"
>
Portuguese
</option><option
value=
"ro"
>
Romanian
</option><option
value=
"ru"
>
Russian
</option><option
value=
"sk"
>
Slovak
</option><option
value=
"sl"
>
Slovenian
</option><option
value=
"es"
>
Spanish
</option><option
value=
"sv"
>
Swedish
</option><option
value=
"th"
>
Thai
</option><option
value=
"tr"
>
Turkish
</option><option
value=
"uk"
>
Ukrainian
</option><option
value=
"vi"
>
Vietnamese
</option></select>
</div>
</form>
<div
style=
"text-align:center;padding:5px 0"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"submitForm()"
style=
"width:80px"
>
Submit
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"clearForm()"
style=
"width:80px"
>
Clear
</a>
</div>
</div>
<script>
function
submitForm
(){
$
(
'
#ff
'
).
form
(
'
submit
'
);
}
function
clearForm
(){
$
(
'
#ff
'
).
form
(
'
clear
'
);
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/form/floatinglabel.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Floating Label - jQuery EasyUI Demo
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../../themes/material-blue/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>
<script
type=
"text/javascript"
src=
"../../source/jquery.validatebox.js"
></script>
<script
type=
"text/javascript"
src=
"../../source/jquery.textbox.js"
></script>
</head>
<body>
<h2>
Floating Label
</h2>
<p>
This example shows how to create inspired text fields with animated floating labels.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-panel"
title=
"New Topic"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<form
id=
"ff"
method=
"post"
>
<div
class=
"form-floating-label form-field"
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"name"
style=
"width:100%"
data-options=
"label:'Name:',labelPosition:'top'"
>
</div>
<div
class=
"form-floating-label form-field"
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"email"
style=
"width:100%"
data-options=
"label:'Email:',labelPosition:'top',validType:'email'"
>
</div>
<div
class=
"form-floating-label form-field"
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"subject"
style=
"width:100%"
data-options=
"label:'Subject:',labelPosition:'top'"
>
</div>
<div
class=
"form-floating-label form-field"
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"message"
style=
"width:100%;min-height:100px"
data-options=
"label:'Message:',labelPosition:'top',multiline:true"
>
</div>
</form>
<div
style=
"text-align:center;padding:5px 0"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"submitForm()"
style=
"width:80px"
>
Submit
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"clearForm()"
style=
"width:80px"
>
Clear
</a>
</div>
</div>
<script>
function
submitForm
(){
$
(
'
#ff
'
).
form
(
'
submit
'
);
}
function
clearForm
(){
$
(
'
#ff
'
).
form
(
'
clear
'
);
}
function
err
(
target
,
message
){
var
t
=
$
(
target
);
if
(
t
.
hasClass
(
'
textbox-text
'
)){
t
=
t
.
parent
();
}
var
m
=
t
.
next
(
'
.error-message
'
);
if
(
!
m
.
length
){
m
=
$
(
'
<div class="error-message"></div>
'
).
insertAfter
(
t
);
}
m
.
html
(
message
);
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/form/form_data1.json
deleted
100644 → 0
View file @
df57ada9
{
"name"
:
"easyui"
,
"email"
:
"easyui@gmail.com"
,
"subject"
:
"Subject Title"
,
"message"
:
"Message Content"
,
"language"
:
"de"
,
"accept"
:
"true"
}
\ No newline at end of file
erp_web/js/easyui/demo/form/load.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Load Form 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 Form Data
</h2>
<p>
Click the buttons below to load form data.
</p>
<div
style=
"margin:20px 0;"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"loadLocal()"
>
LoadLocal
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"loadRemote()"
>
LoadRemote
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"clearForm()"
>
Clear
</a>
</div>
<div
class=
"easyui-panel"
title=
"New Topic"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<form
id=
"ff"
method=
"post"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"name"
style=
"width:100%"
data-options=
"label:'Name:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"email"
style=
"width:100%"
data-options=
"label:'Email:',required:true,validType:'email'"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"subject"
style=
"width:100%"
data-options=
"label:'Subject:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"message"
style=
"width:100%;height:60px"
data-options=
"label:'Message:',multiline:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<select
class=
"easyui-combobox"
name=
"language"
label=
"Language"
style=
"width:100%"
><option
value=
"ar"
>
Arabic
</option><option
value=
"bg"
>
Bulgarian
</option><option
value=
"ca"
>
Catalan
</option><option
value=
"zh-cht"
>
Chinese Traditional
</option><option
value=
"cs"
>
Czech
</option><option
value=
"da"
>
Danish
</option><option
value=
"nl"
>
Dutch
</option><option
value=
"en"
selected=
"selected"
>
English
</option><option
value=
"et"
>
Estonian
</option><option
value=
"fi"
>
Finnish
</option><option
value=
"fr"
>
French
</option><option
value=
"de"
>
German
</option><option
value=
"el"
>
Greek
</option><option
value=
"ht"
>
Haitian Creole
</option><option
value=
"he"
>
Hebrew
</option><option
value=
"hi"
>
Hindi
</option><option
value=
"mww"
>
Hmong Daw
</option><option
value=
"hu"
>
Hungarian
</option><option
value=
"id"
>
Indonesian
</option><option
value=
"it"
>
Italian
</option><option
value=
"ja"
>
Japanese
</option><option
value=
"ko"
>
Korean
</option><option
value=
"lv"
>
Latvian
</option><option
value=
"lt"
>
Lithuanian
</option><option
value=
"no"
>
Norwegian
</option><option
value=
"fa"
>
Persian
</option><option
value=
"pl"
>
Polish
</option><option
value=
"pt"
>
Portuguese
</option><option
value=
"ro"
>
Romanian
</option><option
value=
"ru"
>
Russian
</option><option
value=
"sk"
>
Slovak
</option><option
value=
"sl"
>
Slovenian
</option><option
value=
"es"
>
Spanish
</option><option
value=
"sv"
>
Swedish
</option><option
value=
"th"
>
Thai
</option><option
value=
"tr"
>
Turkish
</option><option
value=
"uk"
>
Ukrainian
</option><option
value=
"vi"
>
Vietnamese
</option></select>
</div>
<div
style=
"margin-bottom:20px"
>
<label
for=
"accept"
class=
"textbox-label"
>
Accept:
</label>
<input
id=
"accept"
type=
"checkbox"
name=
"accept"
value=
"true"
>
</div>
</form>
</div>
<script>
function
loadLocal
(){
$
(
'
#ff
'
).
form
(
'
load
'
,{
name
:
'
myname
'
,
email
:
'
mymail@gmail.com
'
,
subject
:
'
subject
'
,
message
:
'
message
'
,
language
:
'
en
'
,
accept
:
true
});
}
function
loadRemote
(){
$
(
'
#ff
'
).
form
(
'
load
'
,
'
form_data1.json
'
);
}
function
clearForm
(){
$
(
'
#ff
'
).
form
(
'
clear
'
);
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/form/validateonsubmit.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Validate Form on Submit - 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>
Validate Form on Submit
</h2>
<p>
The form does not perform validation before being submitted.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-panel"
title=
"New Topic"
style=
"width:100%;max-width:400px;padding:30px 60px;"
>
<form
id=
"ff"
class=
"easyui-form"
method=
"post"
data-options=
"novalidate:true"
>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"name"
style=
"width:100%"
data-options=
"label:'Name:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"email"
style=
"width:100%"
data-options=
"label:'Email:',required:true,validType:'email'"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"subject"
style=
"width:100%"
data-options=
"label:'Subject:',required:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<input
class=
"easyui-textbox"
name=
"message"
style=
"width:100%;height:60px"
data-options=
"label:'Message:',multiline:true"
>
</div>
<div
style=
"margin-bottom:20px"
>
<select
class=
"easyui-combobox"
name=
"language"
label=
"Language"
style=
"width:100%"
><option
value=
"ar"
>
Arabic
</option><option
value=
"bg"
>
Bulgarian
</option><option
value=
"ca"
>
Catalan
</option><option
value=
"zh-cht"
>
Chinese Traditional
</option><option
value=
"cs"
>
Czech
</option><option
value=
"da"
>
Danish
</option><option
value=
"nl"
>
Dutch
</option><option
value=
"en"
selected=
"selected"
>
English
</option><option
value=
"et"
>
Estonian
</option><option
value=
"fi"
>
Finnish
</option><option
value=
"fr"
>
French
</option><option
value=
"de"
>
German
</option><option
value=
"el"
>
Greek
</option><option
value=
"ht"
>
Haitian Creole
</option><option
value=
"he"
>
Hebrew
</option><option
value=
"hi"
>
Hindi
</option><option
value=
"mww"
>
Hmong Daw
</option><option
value=
"hu"
>
Hungarian
</option><option
value=
"id"
>
Indonesian
</option><option
value=
"it"
>
Italian
</option><option
value=
"ja"
>
Japanese
</option><option
value=
"ko"
>
Korean
</option><option
value=
"lv"
>
Latvian
</option><option
value=
"lt"
>
Lithuanian
</option><option
value=
"no"
>
Norwegian
</option><option
value=
"fa"
>
Persian
</option><option
value=
"pl"
>
Polish
</option><option
value=
"pt"
>
Portuguese
</option><option
value=
"ro"
>
Romanian
</option><option
value=
"ru"
>
Russian
</option><option
value=
"sk"
>
Slovak
</option><option
value=
"sl"
>
Slovenian
</option><option
value=
"es"
>
Spanish
</option><option
value=
"sv"
>
Swedish
</option><option
value=
"th"
>
Thai
</option><option
value=
"tr"
>
Turkish
</option><option
value=
"uk"
>
Ukrainian
</option><option
value=
"vi"
>
Vietnamese
</option></select>
</div>
</form>
<div
style=
"text-align:center;padding:5px 0"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"submitForm()"
style=
"width:80px"
>
Submit
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"clearForm()"
style=
"width:80px"
>
Clear
</a>
</div>
</div>
<script>
function
submitForm
(){
$
(
'
#ff
'
).
form
(
'
submit
'
,{
onSubmit
:
function
(){
return
$
(
this
).
form
(
'
enableValidation
'
).
form
(
'
validate
'
);
}
});
}
function
clearForm
(){
$
(
'
#ff
'
).
form
(
'
clear
'
);
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/_content.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
AJAX Content
</title>
</head>
<body>
<p
style=
"font-size:14px"
>
jQuery EasyUI framework help you build your web page easily.
</p>
<ul>
<li>
easyui is a collection of user-interface plugin based on jQuery.
</li>
<li>
easyui provides essential functionality for building modern, interactive, javascript applications.
</li>
<li>
using easyui you don't need to write many javascript code, you usually defines user-interface by writing some HTML markup.
</li>
<li>
complete framework for HTML5 web page.
</li>
<li>
easyui save your time and scales while developing your products.
</li>
<li>
easyui is very easy but powerful.
</li>
</ul>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/addremove.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Add and Remove 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>
Add and Remove Layout
</h2>
<p>
Click the buttons below to add or remove region panel of layout.
</p>
<div
style=
"margin:20px 0;"
>
<span>
Select Region Panel:
</span>
<select
id=
"region"
>
<option
value=
"north"
>
North
</option>
<option
value=
"south"
>
South
</option>
<option
value=
"east"
>
East
</option>
<option
value=
"west"
>
West
</option>
</select>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"addPanel()"
>
Add
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"removePanel()"
>
Remove
</a>
</div>
<div
id=
"cc"
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south',split:true"
style=
"height:50px;"
></div>
<div
data-options=
"region:'east',split:true"
title=
"East"
style=
"width:100px;"
></div>
<div
data-options=
"region:'west',split:true"
title=
"West"
style=
"width:100px;"
></div>
<div
data-options=
"region:'center',title:'Center'"
></div>
</div>
<script
type=
"text/javascript"
>
function
addPanel
(){
var
region
=
$
(
'
#region
'
).
val
();
var
options
=
{
region
:
region
};
if
(
region
==
'
north
'
||
region
==
'
south
'
){
options
.
height
=
50
;
}
else
{
options
.
width
=
100
;
options
.
split
=
true
;
options
.
title
=
$
(
'
#region option:selected
'
).
text
();
}
$
(
'
#cc
'
).
layout
(
'
add
'
,
options
);
}
function
removePanel
(){
$
(
'
#cc
'
).
layout
(
'
remove
'
,
$
(
'
#region
'
).
val
());
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/autoheight.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Auto Height for 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>
Auto Height for Layout
</h2>
<p>
This example shows how to auto adjust layout height after dynamically adding items.
</p>
<div
style=
"margin:20px 0;"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"addItem()"
>
Add Item
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
onclick=
"removeItem()"
>
Remove Item
</a>
</div>
<div
id=
"cc"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south'"
style=
"height:50px;"
></div>
<div
data-options=
"region:'west'"
style=
"width:150px;"
></div>
<div
data-options=
"region:'center'"
style=
"padding:20px"
>
<p>
Panel Content.
</p>
<p>
Panel Content.
</p>
<p>
Panel Content.
</p>
<p>
Panel Content.
</p>
<p>
Panel Content.
</p>
</div>
</div>
<script
type=
"text/javascript"
>
$
(
function
(){
$
(
'
#cc
'
).
layout
();
setHeight
();
});
function
addItem
(){
$
(
'
#cc
'
).
layout
(
'
panel
'
,
'
center
'
).
append
(
'
<p>More Panel Content.</p>
'
);
setHeight
();
}
function
removeItem
(){
$
(
'
#cc
'
).
layout
(
'
panel
'
,
'
center
'
).
find
(
'
p:last
'
).
remove
();
setHeight
();
}
function
setHeight
(){
var
c
=
$
(
'
#cc
'
);
var
p
=
c
.
layout
(
'
panel
'
,
'
center
'
);
// get the center panel
var
oldHeight
=
p
.
panel
(
'
panel
'
).
outerHeight
();
p
.
panel
(
'
resize
'
,
{
height
:
'
auto
'
});
var
newHeight
=
p
.
panel
(
'
panel
'
).
outerHeight
();
c
.
layout
(
'
resize
'
,{
height
:
(
c
.
height
()
+
newHeight
-
oldHeight
)
});
}
</script>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/basic.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Basic 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>
Basic Layout
</h2>
<p>
The layout contains north,south,west,east and center regions.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south',split:true"
style=
"height:50px;"
></div>
<div
data-options=
"region:'east',split:true"
title=
"East"
style=
"width:100px;"
></div>
<div
data-options=
"region:'west',split:true"
title=
"West"
style=
"width:100px;"
></div>
<div
data-options=
"region:'center',title:'Main Title',iconCls:'icon-ok'"
>
<table
class=
"easyui-datagrid"
data-options=
"url:'datagrid_data1.json',method:'get',border:false,singleSelect:true,fit:true,fitColumns:true"
>
<thead>
<tr>
<th
data-options=
"field:'itemid'"
width=
"80"
>
Item ID
</th>
<th
data-options=
"field:'productid'"
width=
"100"
>
Product ID
</th>
<th
data-options=
"field:'listprice',align:'right'"
width=
"80"
>
List Price
</th>
<th
data-options=
"field:'unitcost',align:'right'"
width=
"80"
>
Unit Cost
</th>
<th
data-options=
"field:'attr1'"
width=
"150"
>
Attribute
</th>
<th
data-options=
"field:'status',align:'center'"
width=
"60"
>
Status
</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/collapsetitle.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Collapse Title in 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>
Collapse Title in Layout
</h2>
<p>
The title bar will display while collapse a region panel.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south',split:true"
style=
"height:50px;"
></div>
<div
data-options=
"region:'east',split:true,hideCollapsedContent:false"
title=
"East"
style=
"width:100px;"
></div>
<div
data-options=
"region:'west',split:true,hideCollapsedContent:false,collapsed:true"
title=
"West"
style=
"width:100px;"
></div>
<div
data-options=
"region:'center',title:'Main Title'"
>
<table
class=
"easyui-datagrid"
data-options=
"url:'datagrid_data1.json',method:'get',border:false,singleSelect:true,fit:true,fitColumns:true"
>
<thead>
<tr>
<th
data-options=
"field:'itemid'"
width=
"80"
>
Item ID
</th>
<th
data-options=
"field:'productid'"
width=
"100"
>
Product ID
</th>
<th
data-options=
"field:'listprice',align:'right'"
width=
"80"
>
List Price
</th>
<th
data-options=
"field:'unitcost',align:'right'"
width=
"80"
>
Unit Cost
</th>
<th
data-options=
"field:'attr1'"
width=
"150"
>
Attribute
</th>
<th
data-options=
"field:'status',align:'center'"
width=
"60"
>
Status
</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/complex.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Complex 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>
Complex Layout
</h2>
<p>
This sample shows how to create a complex layout.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south',split:true"
style=
"height:50px;"
></div>
<div
data-options=
"region:'east',split:true"
title=
"East"
style=
"width:180px;"
>
<ul
class=
"easyui-tree"
data-options=
"url:'tree_data1.json',method:'get',animate:true,dnd:true"
></ul>
</div>
<div
data-options=
"region:'west',split:true"
title=
"West"
style=
"width:100px;"
>
<div
class=
"easyui-accordion"
data-options=
"fit:true,border:false"
>
<div
title=
"Title1"
style=
"padding:10px;"
>
content1
</div>
<div
title=
"Title2"
data-options=
"selected:true"
style=
"padding:10px;"
>
content2
</div>
<div
title=
"Title3"
style=
"padding:10px"
>
content3
</div>
</div>
</div>
<div
data-options=
"region:'center',title:'Main Title',iconCls:'icon-ok'"
>
<div
class=
"easyui-tabs"
data-options=
"fit:true,border:false,plain:true"
>
<div
title=
"About"
data-options=
"href:'_content.html'"
style=
"padding:10px"
></div>
<div
title=
"DataGrid"
style=
"padding:5px"
>
<table
class=
"easyui-datagrid"
data-options=
"url:'datagrid_data1.json',method:'get',singleSelect:true,fit:true,fitColumns:true"
>
<thead>
<tr>
<th
data-options=
"field:'itemid'"
width=
"80"
>
Item ID
</th>
<th
data-options=
"field:'productid'"
width=
"100"
>
Product ID
</th>
<th
data-options=
"field:'listprice',align:'right'"
width=
"80"
>
List Price
</th>
<th
data-options=
"field:'unitcost',align:'right'"
width=
"80"
>
Unit Cost
</th>
<th
data-options=
"field:'attr1'"
width=
"150"
>
Attribute
</th>
<th
data-options=
"field:'status',align:'center'"
width=
"50"
>
Status
</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/customcollapsetitle.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Custom Collapse Title in 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>
Custom Collapse Title in Layout
</h2>
<p>
Any components can display on the title bar of a collapsed panel.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
id=
"cc"
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'east',split:true,hideCollapsedContent:false"
title=
"East"
style=
"width:100px;"
></div>
<div
data-options=
"region:'west',split:true,collapsed:true,
hideExpandTool: true,
expandMode: null,
hideCollapsedContent: false,
collapsedSize: 68,
collapsedContent: function(){
return $('#titlebar');
}
"
title=
"West"
style=
"width:100px;"
></div>
<div
data-options=
"region:'center',title:'Main Title'"
>
<table
class=
"easyui-datagrid"
data-options=
"url:'datagrid_data1.json',method:'get',border:false,singleSelect:true,fit:true,fitColumns:true"
>
<thead>
<tr>
<th
data-options=
"field:'itemid'"
width=
"80"
>
Item ID
</th>
<th
data-options=
"field:'productid'"
width=
"100"
>
Product ID
</th>
<th
data-options=
"field:'listprice',align:'right'"
width=
"80"
>
List Price
</th>
<th
data-options=
"field:'unitcost',align:'right'"
width=
"80"
>
Unit Cost
</th>
<th
data-options=
"field:'attr1'"
width=
"150"
>
Attribute
</th>
<th
data-options=
"field:'status',align:'center'"
width=
"60"
>
Status
</th>
</tr>
</thead>
</table>
</div>
</div>
<div
id=
"titlebar"
style=
"padding:2px"
>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
style=
"width:100%"
data-options=
"iconCls:'layout-button-right'"
onclick=
"$('#cc').layout('expand','west')"
></a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
style=
"width:100%"
data-options=
"iconCls:'icon-large-picture',size:'large',iconAlign:'top'"
>
Picture
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
style=
"width:100%"
data-options=
"iconCls:'icon-large-shapes',size:'large',iconAlign:'top'"
>
Shapes
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
style=
"width:100%"
data-options=
"iconCls:'icon-large-smartart',size:'large',iconAlign:'top'"
>
SmartArt
</a>
<a
href=
"javascript:void(0)"
class=
"easyui-linkbutton"
style=
"width:100%"
data-options=
"iconCls:'icon-large-chart',size:'large',iconAlign:'top'"
>
Chart
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/datagrid_data1.json
deleted
100644 → 0
View file @
df57ada9
{
"total"
:
28
,
"rows"
:[
{
"productid"
:
"FI-SW-01"
,
"productname"
:
"Koi"
,
"unitcost"
:
10.00
,
"status"
:
"P"
,
"listprice"
:
36.50
,
"attr1"
:
"Large"
,
"itemid"
:
"EST-1"
},
{
"productid"
:
"K9-DL-01"
,
"productname"
:
"Dalmation"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
18.50
,
"attr1"
:
"Spotted Adult Female"
,
"itemid"
:
"EST-10"
},
{
"productid"
:
"RP-SN-01"
,
"productname"
:
"Rattlesnake"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
38.50
,
"attr1"
:
"Venomless"
,
"itemid"
:
"EST-11"
},
{
"productid"
:
"RP-SN-01"
,
"productname"
:
"Rattlesnake"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
26.50
,
"attr1"
:
"Rattleless"
,
"itemid"
:
"EST-12"
},
{
"productid"
:
"RP-LI-02"
,
"productname"
:
"Iguana"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
35.50
,
"attr1"
:
"Green Adult"
,
"itemid"
:
"EST-13"
},
{
"productid"
:
"FL-DSH-01"
,
"productname"
:
"Manx"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
158.50
,
"attr1"
:
"Tailless"
,
"itemid"
:
"EST-14"
},
{
"productid"
:
"FL-DSH-01"
,
"productname"
:
"Manx"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
83.50
,
"attr1"
:
"With tail"
,
"itemid"
:
"EST-15"
},
{
"productid"
:
"FL-DLH-02"
,
"productname"
:
"Persian"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
23.50
,
"attr1"
:
"Adult Female"
,
"itemid"
:
"EST-16"
},
{
"productid"
:
"FL-DLH-02"
,
"productname"
:
"Persian"
,
"unitcost"
:
12.00
,
"status"
:
"P"
,
"listprice"
:
89.50
,
"attr1"
:
"Adult Male"
,
"itemid"
:
"EST-17"
},
{
"productid"
:
"AV-CB-01"
,
"productname"
:
"Amazon Parrot"
,
"unitcost"
:
92.00
,
"status"
:
"P"
,
"listprice"
:
63.50
,
"attr1"
:
"Adult Male"
,
"itemid"
:
"EST-18"
}
]}
erp_web/js/easyui/demo/layout/fluid.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Fluid 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>
Fluid Layout
</h2>
<p>
Percentage width of region panel in a layout.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
id=
"p"
data-options=
"region:'west'"
title=
"West"
style=
"width:30%;padding:10px"
>
<p>
width: 30%
</p>
</div>
<div
data-options=
"region:'center'"
title=
"Center"
>
</div>
</div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/full.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Full 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
class=
"easyui-layout"
>
<div
data-options=
"region:'north',border:false"
style=
"height:60px;background:#B3DFDA;padding:10px"
>
north region
</div>
<div
data-options=
"region:'west',split:true,title:'West'"
style=
"width:150px;padding:10px;"
>
west content
</div>
<div
data-options=
"region:'east',split:true,collapsed:true,title:'East'"
style=
"width:100px;padding:10px;"
>
east region
</div>
<div
data-options=
"region:'south',border:false"
style=
"height:50px;background:#A9FACD;padding:10px;"
>
south region
</div>
<div
data-options=
"region:'center',title:'Center'"
></div>
</body>
</html>
\ No newline at end of file
erp_web/js/easyui/demo/layout/nestedlayout.html
deleted
100644 → 0
View file @
df57ada9
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Nested 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>
Nested Layout
</h2>
<p>
The layout region panel contains another layout or other components.
</p>
<div
style=
"margin:20px 0;"
></div>
<div
class=
"easyui-layout"
style=
"width:700px;height:350px;"
>
<div
data-options=
"region:'north'"
style=
"height:50px"
></div>
<div
data-options=
"region:'south',split:true"
style=
"height:50px;"
></div>
<div
data-options=
"region:'east',split:true"
title=
"East"
style=
"width:180px;"
></div>
<div
data-options=
"region:'west',split:true"
title=
"West"
style=
"width:100px;"
></div>
<div
data-options=
"region:'center',iconCls:'icon-ok'"
title=
"Center"
style=
"padding:5px"
>
<div
class=
"easyui-layout"
data-options=
"fit:true"
>
<div
data-options=
"region:'north',split:true"
style=
"height:50px"
></div>
<div
data-options=
"region:'west',split:true"
style=
"width:100px"
></div>
<div
data-options=
"region:'center'"
></div>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
Prev
1
…
17
18
19
20
21
22
23
24
25
…
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