<script src="../../codebase/dhtmlxdataview.js" type="text/javascript"></script>
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxdataview.css">
<textarea id="template_container" rows="5" cols="60">
#Package# : #Version#
<br/>#Maintainer#</textarea>
<input type="button" name="apply" value="apply" onclick="apply_type()">
<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: "html->template_container",
height: 40;
}
});
data.load("../common/data.xml");
function apply_type() {
data.define("type", {
template: "html->template_container",
height: 40;
});
}
</script>