DHTMLX Docs & Samples Explorer

Dynamic paging

Data is loaded to the DataView on demand


Source
<script src="../../codebase/dhtmlxdataview.js" type="text/javascript"></script>
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxdataview.css">  
 
 
<div id="data_container" style="border:1px solid #A4BED4; background-color:white; width:710px;height:392px;"></div>
<br>
<div id="paging_here"    style="width:596px;height:36px; "></div>
<script>
data = new dhtmlXDataView({
    container: "data_container",
    type: {
        template: "<span class='dhx_strong'>#Maintainer#</span>#Package# <span class='dhx_light'>#Version#</span>",
        height: 35;
    },
    pager: {
        container: "paging_here",
        size: 20;
    }
});
data.load("php/data.php");
</script>