Static paging
All data is loaded at once
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Static paging</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/fonts/font_roboto/roboto.css"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script>
var myDataView;
function doOnLoad() {
myDataView = new dhtmlXDataView({
container:"data_container",
type:{
template:"<span class='dhx_strong'>#Maintainer#</span>#Package# <span class='dhx_light'>#Version#</span>",
height:55
},
pager:{
container:"paging_here",
size:21,
group:8
}
});
myDataView.attachEvent("onMouseMove", function (id, ev, html) {
myDataView.select(id);
});
myDataView.load("php/data_static.php");
}
</script>
</head>
<body onload="doOnLoad();">
<h1>Static paging</h1>
<p>All data is loaded at once</p>
<div id="data_container" style="border:1px solid #c0c0c0; background-color:white; width:710px;height:392px;"></div><br>
<div id="paging_here" style="width:596px;height:36px;"></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.