UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

82 lines (68 loc) 1.92 kB
define([ "dojo/_base/declare", "dojo/dom-style", "dijit/_WidgetBase", "dijit/_TemplatedMixin", "./_RendererMixin", "dojo/text!./templates/MobileHorizontalRenderer.html"], function( declare, domStyle, _WidgetBase, _TemplatedMixin, _RendererMixin, template){ return declare("dojox.calendar.MobileHorizontalRenderer", [_WidgetBase, _TemplatedMixin, _RendererMixin], { // summary: // The mobile specific item horizontal renderer. templateString: template, _orientation: "horizontal", mobile: true, visibilityLimits: { resizeStartHandle: 50, resizeEndHandle: -1, summaryLabel: 15, startTimeLabel: 32, endTimeLabel: 30 }, _displayValue: "inline", // arrowPadding: Integer // The padding size in pixels to apply to the label container on left and/or right side, to show the arrows correctly. arrowPadding: 12, _isElementVisible: function(elt, startHidden, endHidden, size){ var d; var ltr = this.isLeftToRight(); if(elt == "startTimeLabel"){ if(this.labelContainer && (ltr && endHidden || !ltr && startHidden)){ domStyle.set(this.labelContainer, "marginRight", this.arrowPadding+"px"); }else{ domStyle.set(this.labelContainer, "marginRight", 0); } if(this.labelContainer && (!ltr && endHidden || ltr && startHidden)){ domStyle.set(this.labelContainer, "marginLeft", this.arrowPadding+"px"); }else{ domStyle.set(this.labelContainer, "marginLeft", 0); } } switch(elt){ case "startTimeLabel": d = this.item.startTime; if(this.item.allDay || this.owner.isStartOfDay(d)){ return false; } break; case "endTimeLabel": d = this.item.endTime; if(this.item.allDay || this.owner.isStartOfDay(d)){ return false; } break; } return this.inherited(arguments); }, postCreate: function() { this.inherited(arguments); this._applyAttributes(); } }); });