Package com.microstrategy.web.app.beans
Interface ResizeEditorBean
-
- All Superinterfaces:
AppComponent
,EnumWebPersistableState
,FrameElement
,Persistable
,ReportFrameElement
,RequestPersistable
,Transformable
,ViewBeanParserBean
,WebComponent
public interface ResizeEditorBean extends ViewBeanParserBean, ReportFrameElement
The ResizeEditorBean is for the "Resize columns and rows" dialog. You can open the editor/dialog by clicking the menu item at Format \ Grid Layout \ Resize Columns and Rows. You can achieve the resizing funtion only if 1) the report is not in graph mode 2) the report is not in outline mode 3) the browser is IE later than 5.0 version- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.app.beans.AppComponent
COMPONENT_POSITION_NOT_INITIALIZED
-
Fields inherited from interface com.microstrategy.utils.serialization.EnumWebPersistableState
BARE_MINIMAL_STATE_INFO, MAXIMAL_STATE_INFO, MINIMAL_STATE_INFO, TYPICAL_STATE_INFO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDefaultGridWidth()
int
getDefaultHeaderWidth()
WebGridWidths
getGridWidths()
Retrieves the widths information for the associated gridboolean
isOptionsVisible()
void
setOptionsVisible(boolean visible)
Set whether the options in the resize editor are visible-
Methods inherited from interface com.microstrategy.web.app.beans.AppComponent
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getLeft, getResultFilterMode, getTop, isDialog, isForcedChildrenStateSaving, isModal, isModalOpen, isOpen, setExtraInput, setExtraUrl, setForcedChildrenStateSaving, setHasJustOpened, setIsDialog, setIsModal, setIsOpen, setLeft, setTop
-
Methods inherited from interface com.microstrategy.web.app.beans.FrameElement
getFrameBean, getTargetBean, getTargetBeanPath, getUseIFrame, isEditor, isEnabled, setTargetBean, setTargetBeanPath, setUseIFrame
-
Methods inherited from interface com.microstrategy.utils.serialization.Persistable
restoreState, restoreState, saveState, saveState, saveState, saveState
-
Methods inherited from interface com.microstrategy.web.app.beans.ReportFrameElement
getReportFrameBean, isGridDataNecessary
-
Methods inherited from interface com.microstrategy.web.beans.RequestPersistable
restoreStateFromRequest, restoreStateFromRequest
-
Methods inherited from interface com.microstrategy.web.beans.Transformable
addTransform, addTransformByClass, addTransformByStyle, addTransformByStyle, clearTransforms, getBeanContext, getMessageString, getMyTransformInstances, getTransformInstance, getTransformInstance, getTransformInstances, getType, hasTransform, hasTransform, invalidateTransformCache, setBeanContext, transform, transform
-
Methods inherited from interface com.microstrategy.web.app.beans.ViewBeanParserBean
getActiveElementIndex, getActiveViewKey, getTemplateElementList, getViewBean, getViewBean, setActiveElementIndex, setActiveViewKey
-
Methods inherited from interface com.microstrategy.web.beans.WebComponent
addChild, addChildStateInfo, addChildStateInfo, collectData, collectMinimalData, generateOutput, getBeanContext, getChild, getChild, getChildByClass, getChildByType, getChildCount, getChildrenByClass, getDefaultStateLevel, getFeaturesManager, getMaximumStateLevel, getName, getOutputFormat, getParent, getPath, getPersistMode, getRenderingFilter, getRoot, getWebEvent, getWebEvent, getWebEventHandler, getXMLStatus, handleRequest, hasChanged, hasJustOpened, initBean, invalidateChildrenState, isBeanContextEmpty, isFeatureAvailable, prepareForReuse, removeChild, removeChild, searchChild, setBeanContext, setBeanContext, setChanged, setChanged, setDefaultStateLevel, setFeaturesManager, setName, setOutputFormat, setParent, setPersistMode, setRenderingFilter, setWebEventHandler
-
-
-
-
Method Detail
-
isOptionsVisible
boolean isOptionsVisible()
- Returns:
- whether the options in the resize editor are visible It's used in DHTML mode, as user can resize the column widths by drag and drop without using the editor's dropdown and textboxes.
-
setOptionsVisible
void setOptionsVisible(boolean visible)
Set whether the options in the resize editor are visible- Parameters:
visible
- whether the options are visible
-
getDefaultHeaderWidth
int getDefaultHeaderWidth()
- Returns:
- the default header width for the report if the report instance had default header width not equal to -1, the method returns this value; or else it returns the preference value for EnumWebPreferences.WebPreferenceGridDefaultHeaderWidth
- Since:
- MicroStrategy Web 7.5.0
-
getDefaultGridWidth
int getDefaultGridWidth()
- Returns:
- the default grid width for the report if the report instance had default grid width not equal to -1, the method returns this value; or else it returns the preference value for EnumWebPreferences.WebPreferenceGridDefaultGridWidth
- Since:
- MicroStrategy Web 7.5.0
-
getGridWidths
WebGridWidths getGridWidths()
Retrieves the widths information for the associated grid- Returns:
WebGridWidths
instance- Since:
- MicroStrategy Web 8.0.0
-
-