/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ /** * @class Ext.calendar.DayViewTemplate * @extends Ext.XTemplate *

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.

*

This template is automatically bound to the underlying event store by the * calendar components and expects records of type {@link Ext.calendar.EventRecord}.

* @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, '
', '{headerTpl}', '{bodyTpl}', '
' ); }; 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;