1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
</head>
<body onload="prettyPrint();">
<pre class="prettyprint lang-js">/*!
* Ext JS Library 3.3.1
* Copyright(c) 2006-2010 Sencha Inc.
* licensing@sencha.com
* http://www.sencha.com/license
*/
<div id="cls-Ext.calendar.DayViewTemplate"></div>/**
* @class Ext.calendar.DayViewTemplate
* @extends Ext.XTemplate
* <p>This is the template used to render the all-day event container used in {@link Ext.calendar.DayView DayView} and
* {@link Ext.calendar.WeekView WeekView}. Internally this class simply defers to instances of {@link Ext.calerndar.DayHeaderTemplate}
* and {@link Ext.calerndar.DayBodyTemplate} to perform the actual rendering logic, but it also provides the overall calendar view
* container that contains them both. As such this is the template that should be used when rendering day or week views.</p>
* <p>This template is automatically bound to the underlying event store by the
* calendar components and expects records of type {@link Ext.calendar.EventRecord}.</p>
* @constructor
* @param {Object} config The config object
*/
Ext.calendar.DayViewTemplate = function(config){
Ext.apply(this, config);
this.headerTpl = new Ext.calendar.DayHeaderTemplate(config);
this.headerTpl.compile();
this.bodyTpl = new Ext.calendar.DayBodyTemplate(config);
this.bodyTpl.compile();
Ext.calendar.DayViewTemplate.superclass.constructor.call(this,
'<div class="ext-cal-inner-ct">',
'{headerTpl}',
'{bodyTpl}',
'</div>'
);
};
Ext.extend(Ext.calendar.DayViewTemplate, Ext.XTemplate, {
// private
applyTemplate : function(o){
return Ext.calendar.DayViewTemplate.superclass.applyTemplate.call(this, {
headerTpl: this.headerTpl.apply(o),
bodyTpl: this.bodyTpl.apply(o)
});
}
});
Ext.calendar.DayViewTemplate.prototype.apply = Ext.calendar.DayViewTemplate.prototype.applyTemplate;
</pre>
</body>
</html>
|