Interface ReportGridCellRowTitle
-
- All Superinterfaces:
java.lang.Cloneable
,ReportGridCellTitle
,ReportGridDisplayCell
- All Known Implementing Classes:
ReportGridCellRowTitleImpl
,ReportGridDisplayCellRowTitle
,ReportGridExcelCellRowTitleImpl
public interface ReportGridCellRowTitle extends ReportGridCellTitle
The
ReportGridCellRowTitle
represents a title of the row axis.Classes implementing this interface need to deal with different type of
SDK
objects:WebTitle
: used in view mode, this is the SDK object that represents a title of the row axis.WebSubTitle
: used in view mode when attribute forms are being displayed, for each attribute form there will be a corresondingWebSubTitle
.WebTemplateUnit
: used in design mode, this is the SDK object used in a template for the row axis.
Users can modify the HTML generated for a row title cell by creating a custom class that implements this interface. The easiest way to accomplish this is to extend the out-of-the-box implementation provided by Microstrateg Web, that is the
ReportGridCellRowTitleImpl
.- Since:
- MicroStrategy Web 7.5.1
- See Also:
ReportGridDisplayCell
,ReportGridTransformImpl
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.microstrategy.web.app.transforms.ReportGridDisplayCell
ReportGridDisplayCell.Context
-
-
Field Summary
Fields Modifier and Type Field Description static int
SORT_TYPE_ASCENDING
Identifier for the sort order ascendingstatic int
SORT_TYPE_DESCENDING
Identifier for the sort order descending-
Fields inherited from interface com.microstrategy.web.app.transforms.ReportGridDisplayCell
PIVOT_DECREASE_POSITION, PIVOT_INCREASE_POSITION, PIVOT_REMOVE, PIVOT_SWITCH_AXIS, PIVOT_TO_PAGE_BY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebEvent
getSortEvent(int type)
Get theWebEvent
instance with the information for sorting the current cell valuesboolean
isSortAscending()
boolean
isSorted()
-
Methods inherited from interface com.microstrategy.web.app.transforms.ReportGridCellTitle
canAddShortcutMetric, getAddShortcutMetricEvent, getSubTitle, getSubtitleIndex, getWebTemplateUnit, getWebTitle, init, init, init, init, setSubTitle, setSubTitleIndex
-
Methods inherited from interface com.microstrategy.web.app.transforms.ReportGridDisplayCell
addExtraAttribute, canAddThresholds, canDrill, canDrillAdvanced, canEditControl, canEditMetricFilter, canFilterOn, canFilterOnSelection, canFormat, canHaveDerivedElements, canHyperLink, canInsertShortcutMetric, canMetricFilterOn, canModifyAttributeForm, canOpenAlerts, canPivot, canPivot, canQuickGroup, canRemoveFromGrid, canRemoveFromReport, canRename, canSort, generateOutput, getAccessibilityInfo, getCellID, getCellType, getColSpan, getControlElementSelectorEvent, getDerivedElementsEvent, getDrillEvent, getDrillPathWithHighImportance, getExtraInfo, getExtraStyle, getFilterOnEvent, getHeaderContent, getKey, getOpenFormatEditorEvent, getRenameEvent, getRowSpan, getSetFormatEditorTargetEvent, getStyle, getText, getTooltip, getWidth, init, init, init, init, isRW, reset, setAccessibilityInfo, setCellID, setColSpan, setContent, setContextMenu, setExtraInfo, setExtraStyle, setExtraStyle, setHTML, setInnerHTML, setPostContent, setPreContent, setRowSpan, setStyle, setText, setTooltip, setWidth
-
-
-
-
Field Detail
-
SORT_TYPE_ASCENDING
static final int SORT_TYPE_ASCENDING
Identifier for the sort order ascending- Since:
- MicroStrategy Web 8.0.1
- See Also:
- Constant Field Values
-
SORT_TYPE_DESCENDING
static final int SORT_TYPE_DESCENDING
Identifier for the sort order descending- Since:
- MicroStrategy Web 8.0.1
- See Also:
- Constant Field Values
-
-
Method Detail
-
isSorted
boolean isSorted()
- Returns:
- boolean value indicating if the current cell is sorted or not
- Since:
- MicroStrategy Web 8.0.1
-
isSortAscending
boolean isSortAscending()
- Returns:
- boolean value indicating if the current cell is sorted ascending or not
- Since:
- MicroStrategy Web 8.0.1
-
getSortEvent
WebEvent getSortEvent(int type)
Get theWebEvent
instance with the information for sorting the current cell values- Parameters:
type
- int value with the identifier for the sort order to generate. Values expected includeSORT_TYPE_ASCENDING
andSORT_TYPE_DESCENDING
- Returns:
- WebEvent
- Since:
- MicroStrategy Web 8.0.1
-
-