Class ExportOptionsEditorTransform

    • Field Detail

      • EXPORT_TARGET_WINDOW_NAME

        protected static final java.lang.String EXPORT_TARGET_WINDOW_NAME
        See Also:
        Constant Field Values
      • PROPERTYSET_RWDOCUMENT_PROPERTIES

        public static final java.lang.String PROPERTYSET_RWDOCUMENT_PROPERTIES
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_DEFAULT_PAGEBY_EXPORT_MODE

        public static final java.lang.String PROPERTY_DEFAULT_PAGEBY_EXPORT_MODE
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_PROMPT_USER_FOR_PAGEBY_EXPORT

        public static final java.lang.String PROPERTY_PROMPT_USER_FOR_PAGEBY_EXPORT
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTYSET_NAME_FORMATTING_PAGE

        public static final java.lang.String PROPERTYSET_NAME_FORMATTING_PAGE
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_NAME_INCLUDE_BOOKMARKS

        public static final java.lang.String PROPERTY_NAME_INCLUDE_BOOKMARKS
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_NAME_SHOW_BOOKMARKS

        public static final java.lang.String PROPERTY_NAME_SHOW_BOOKMARKS
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_NAME_EMBED_FONTS

        public static final java.lang.String PROPERTY_NAME_EMBED_FONTS
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_NAME_EMBED_IMAGES

        public static final java.lang.String PROPERTY_NAME_EMBED_IMAGES
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_USE_BITMAPS_GRAPH

        public static final java.lang.String PROPERTY_USE_BITMAPS_GRAPH
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_USE_DRAFT_QUALITY_GRAPH

        public static final java.lang.String PROPERTY_USE_DRAFT_QUALITY_GRAPH
        Since:
        MicroStrategy Web 9.0.0
        See Also:
        Constant Field Values
      • PROPERTY_EXPORT_RANGE_ALL

        public static final java.lang.String PROPERTY_EXPORT_RANGE_ALL
        Since:
        MicroStrategy Web 9.0.0
      • PROPERTY_EXPORT_RANGE_CURRENT

        public static final java.lang.String PROPERTY_EXPORT_RANGE_CURRENT
        Since:
        MicroStrategy Web 9.0.0
    • Constructor Detail

      • ExportOptionsEditorTransform

        public ExportOptionsEditorTransform()
    • Method Detail

      • renderExportHiddenInput

        protected void renderExportHiddenInput​(MarkupOutput out)
      • getSupportedBeanType

        public java.lang.Class getSupportedBeanType()
        Description copied from class: AbstractAppTransform
        Returns the supported bean type. This abstract Transform supports all WebComponents so every sub-class should override this method to return the class of the Bean the Transform is expecting, for example:
         public class CustomReportClass extends AbstractAppTransform {
        
            public Class getSupportedBeanType() {
                //This Transform is expected to work only with a ReportBean,
                //therefore this method needs to return this class:
                return ReportBean.class;
            }
        
         }
         
        Specified by:
        getSupportedBeanType in interface Transform
        Overrides:
        getSupportedBeanType in class AbstractAppTransform
        Returns:
        a root class/interface supported by this transform.
      • getDescription

        public java.lang.String getDescription()
        Returns the textual description of the transform
        Returns:
        the description of the transform
      • getScriptClass

        protected java.lang.String getScriptClass()
        Description copied from class: AbstractAppTransform

        Returns the name of the javaScript class (if any) to be associated with the component. When the scriptClass is specified, a bone is registered on the page for this component.

        A bone is the corresponding concept of a bean in Microstrategy's javascript environment.
        By default, thie methods returns an empty string. Transform which does have an associated bone needs to override this method.
        Overrides:
        getScriptClass in class AbstractAppTransform
        Returns:
        String representing the name of a javaScript class