DHTMLX Docs & Samples Explorer

Fixed height

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:100%;height:396px;"></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;
    },
    x_count: 2,
    y_count: 4;
});
data.load("../common/data.xml");
</script>