mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 21:13:26 +00:00
105 lines
3.2 KiB
HTML
105 lines
3.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Client-side Pagination</title>
|
|
|
|
<style type="text/css">
|
|
/*margin and padding on body element
|
|
can introduce errors in determining
|
|
element position and are not recommended;
|
|
we turn them off as a foundation for YUI
|
|
CSS treatments. */
|
|
body {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../build/paginator/assets/skins/sam/paginator.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../build/datatable/assets/skins/sam/datatable.css" />
|
|
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
|
<script type="text/javascript" src="../../build/connection/connection-min.js"></script>
|
|
<script type="text/javascript" src="../../build/json/json-min.js"></script>
|
|
<script type="text/javascript" src="../../build/element/element-min.js"></script>
|
|
<script type="text/javascript" src="../../build/paginator/paginator-min.js"></script>
|
|
<script type="text/javascript" src="../../build/datasource/datasource-min.js"></script>
|
|
<script type="text/javascript" src="../../build/datatable/datatable-min.js"></script>
|
|
|
|
|
|
<!--begin custom header content for this example-->
|
|
<style type="text/css">
|
|
#paginated {
|
|
text-align: center;
|
|
}
|
|
#paginated table {
|
|
margin-left:auto; margin-right:auto;
|
|
}
|
|
#paginated, #paginated .yui-dt-loading {
|
|
text-align: center; background-color: transparent;
|
|
}
|
|
</style>
|
|
|
|
<!--end custom header content for this example-->
|
|
|
|
</head>
|
|
|
|
<body class="yui-skin-sam">
|
|
|
|
|
|
<h1>Client-side Pagination</h1>
|
|
|
|
<div class="exampleIntro">
|
|
<p>This example retrieves a large data set in JSON format from a server script, then loads the data into a DataTable with client side pagination enabled.</p>
|
|
|
|
</div>
|
|
|
|
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
<div id="paginated"></div>
|
|
|
|
<script type="text/javascript">
|
|
YAHOO.util.Event.onDOMReady(function() {
|
|
YAHOO.example.ClientPagination = function() {
|
|
var myColumnDefs = [
|
|
{key:"id", label:"ID"},
|
|
{key:"name", label:"Name"},
|
|
{key:"date", label:"Date"},
|
|
{key:"price", label:"Price"},
|
|
{key:"number", label:"Number"}
|
|
];
|
|
|
|
var myDataSource = new YAHOO.util.DataSource("assets/php/json_proxy.php?");
|
|
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
|
|
myDataSource.responseSchema = {
|
|
resultsList: "records",
|
|
fields: ["id","name","date","price","number"]
|
|
};
|
|
|
|
var oConfigs = {
|
|
paginator: new YAHOO.widget.Paginator({
|
|
rowsPerPage: 15
|
|
}),
|
|
initialRequest: "results=504"
|
|
};
|
|
var myDataTable = new YAHOO.widget.DataTable("paginated", myColumnDefs,
|
|
myDataSource, oConfigs);
|
|
|
|
return {
|
|
oDS: myDataSource,
|
|
oDT: myDataTable
|
|
};
|
|
}();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
</body>
|
|
</html>
|