DHTMLX Docs & Samples Explorer

Template from JS string

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:596px;height:396px;"></div>
<script>
data = new dhtmlXDataView({
    container: "data_container",
    type: {
        template: "#Package# : #Version#<br/>#Maintainer#",
        height: 40;
    }
});
data.load("../common/data.xml");
</script>