DHTMLX Touch documentation

Calendar Usage Example

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
	<title>DataView</title>
	<link rel="stylesheet" href="../../../codebase/touchui.css" type="text/css" media="screen" charset="utf-8">
	<script src="../../../codebase/touchui.js" type="text/javascript" charset="utf-8"></script>
<body>
	<script>
		dhx.ui({ // creates popup and calendar in it
			view:"popup",
			body: { view:"calendar", navigation: true, week_header: false, week_number: false, date: new Date(2010,11,14) },
			top:200, left:500 // popup offsets 
		});	
	</script>
</body>
</html>