<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: function(obj) {
return (obj.Package || "").substr(0, 10) + " " + (obj.Version || "").substr(0, 3) + "<br/>" + obj.Maintainer;
},
height: 40;
}
});
data.load("../common/data.xml");
</script>