DHTMLX Docs & Samples Explorer

Loading data from JS array

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: "#data1# : #data2#<br/>#data3#",
        height: 40;
    }
});
data.load("../common/data.js", "jsarray");
</script>