mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
25 lines
579 B
HTML
25 lines
579 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>ET2 - Test</title>
|
||
|
|
||
|
<script src="../et2_xml.js"></script>
|
||
|
<script src="../et2_inheritance.js"></script>
|
||
|
<script src="../et2_common.js"></script>
|
||
|
<script src="../et2_widget.js"></script>
|
||
|
</head>
|
||
|
<body onload="init();">
|
||
|
<script>
|
||
|
var doc = null;
|
||
|
|
||
|
function init() {
|
||
|
et2_loadXMLFromURL("../../../timesheet/templates/default/edit.xet",
|
||
|
function(_xmldoc) {
|
||
|
var container = new et2_container(null);
|
||
|
container.setParentDOMNode(document.body);
|
||
|
container.loadFromXML(_xmldoc);
|
||
|
});
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|