1234567891011121314151617181920212223242526272829303132333435363738 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2017
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['../VisSelectionInfo'], function (VisSelectionInfo) {
- 'use strict';
- var GridSelectionInfo = VisSelectionInfo.extend({
- init: function init() {
- GridSelectionInfo.inherited('init', this, arguments);
- this._navigateActionSelections = null;
- },
- addNavigateActionSelection: function addNavigateActionSelection(oSlot, oDataItem, sValue) {
- if (!this._navigateActionSelection) {
- this._navigateActionSelections = [];
- }
- this._navigateActionSelections.push(this._createSelectionObject(oSlot, oDataItem, sValue));
- },
- _isEdgeSelection: function _isEdgeSelection() {
- //returns true so that the filter selection will not be a compound filter.
- return true;
- },
- getNavigateActionSelections: function getNavigateActionSelections() {
- return this._navigateActionSelections;
- }
- });
- return GridSelectionInfo;
- });
- //# sourceMappingURL=GridSelectionInfo.js.map
|