Class GroupbyPropertiesEditorTransform

    • Constructor Detail

      • GroupbyPropertiesEditorTransform

        public GroupbyPropertiesEditorTransform()
    • Method Detail

      • getApplyEvent

        public WebEvent getApplyEvent()
      • renderPDFSection

        protected void renderPDFSection​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderExcelSection

        protected void renderExcelSection​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderKeepTogether

        protected void renderKeepTogether​(MarkupOutput out)
      • renderPageBreak

        protected void renderPageBreak​(MarkupOutput out)
      • renderSheetBreak

        protected void renderSheetBreak​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderPageRestart

        protected void renderPageRestart​(MarkupOutput out)
      • renderPageByStyle

        public void renderPageByStyle​(MarkupOutput out)
      • renderDetailHeaderFooterOrientation

        public void renderDetailHeaderFooterOrientation​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderDetailOrientation

        public void renderDetailOrientation​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderGroupOrientation

        public void renderGroupOrientation​(MarkupOutput out)
        Since:
        MicroStrategy Web 9.0.0
      • renderSectionVisibility

        public void renderSectionVisibility​(MarkupOutput out)
        Since:
        MicroStrategy Web 8.1.0
      • getDescription

        public java.lang.String getDescription()
        Description copied from interface: Transform
        Returns a textual description of the transform.
        Returns:
        The textual description of the transform.
      • isDetailGroup

        public boolean isDetailGroup()
        Since:
        MicroStrategy Web 9.0.0
      • 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.