Lines Matching refs:viewType

10692     Calendar.prototype.instantiateView = function (viewType) {
10693 var spec = this.viewSpecManager.getViewSpec(viewType);
10695 throw new Error("View type \"" + viewType + "\" is not valid");
10700 Calendar.prototype.isValidViewType = function (viewType) {
10701 return Boolean(this.viewSpecManager.getViewSpec(viewType));
10718 Calendar.prototype.zoomTo = function (newDate, viewType) {
10720 viewType = viewType || 'day'; // day is default zoom
10721 spec = this.viewSpecManager.getViewSpec(viewType) ||
10722 this.viewSpecManager.getUnitViewSpec(viewType);
10813 var viewType = gotoOptions.type;
10815 … var customAction = _this.view.opt('navLink' + util_1.capitaliseFirstLetter(viewType) + 'Click');
10821 viewType = customAction;
10823 _this.zoomTo(date, viewType);
10911 Calendar.prototype.renderView = function (viewType) {
10915 if (oldView && viewType && oldView.type !== viewType) {
10919 if (!this.view && viewType) {
10921 this.viewsByType[viewType] ||
10922 (this.viewsByType[viewType] = this.instantiateView(viewType));
10925 … newView.setElement($("<div class='fc-view fc-" + viewType + "-view'>").appendTo(this.contentEl));
10926 this.toolbarsManager.proxyCall('activateButton', viewType);
14778 ViewSpecManager.prototype.getViewSpec = function (viewType) {
14780 return cache[viewType] || (cache[viewType] = this.buildViewSpec(viewType));
14791 $.each(ViewRegistry_1.viewHash, function (viewType) {
14792 viewTypes.push(viewType);
14810 var viewType = requestedViewType;
14817 while (viewType) {
14818 spec = ViewRegistry_1.viewHash[viewType];
14819 overrides = viewOverrides[viewType];
14820 viewType = null; // clear. might repopulate for another iteration
14828 viewType = viewType || spec.type;
14833 viewType = viewType || overrides.type;