| 1234567891011121314151617181920212223242526 |
- /**
- * DevExtreme (ui/scheduler/workspaces/ui.scheduler.timeline_day.js)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- "use strict";
- var registerComponent = require("../../../core/component_registrator");
- var SchedulerTimeline = require("./ui.scheduler.timeline");
- var TIMELINE_CLASS = "dx-scheduler-timeline-day";
- var SchedulerTimelineDay = SchedulerTimeline.inherit({
- _getElementClass: function() {
- return TIMELINE_CLASS
- },
- _setFirstViewDate: function() {
- this._firstViewDate = this.option("currentDate");
- this._setStartDayHour(this._firstViewDate)
- },
- _needRenderWeekHeader: function() {
- return this._isWorkSpaceWithCount()
- }
- });
- registerComponent("dxSchedulerTimelineDay", SchedulerTimelineDay);
- module.exports = SchedulerTimelineDay;
|