升级easyUI到1.9.4版本
This commit is contained in:
62
erp_web/js/easyui/demo/pagination/layout.html
Normal file
62
erp_web/js/easyui/demo/pagination/layout.html
Normal file
@@ -0,0 +1,62 @@
|
||||
<!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>
|
||||
<p>The pagination layout supports various types of pages which you can choose.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel">
|
||||
<div id="pp" class="easyui-pagination" data-options="
|
||||
total:114,
|
||||
layout:['first','prev','next','last','info']
|
||||
"></div>
|
||||
</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','info']});
|
||||
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','info'],
|
||||
beforePageText:'Go Page',
|
||||
afterPageText:''
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user