Class FolderQuickSearchResultsXHTMLTransform

    • Constructor Detail

      • FolderQuickSearchResultsXHTMLTransform

        public FolderQuickSearchResultsXHTMLTransform()
    • Method Detail

      • initializeTransform

        public void initializeTransform​(Transformable data)

        This method initialize the private and protected fields of the transform It also invokes the initializeWebComponent, initializeImages and initializeCss methods.

        This method is automatically called from the transform method. Transforms which would like to invoke other methods in this instance directly (for example, to invoke some render methods), need first to call this method to guarantee that the Transform is ready to generate output.
        Specified by:
        initializeTransform in interface AppTransform
        Overrides:
        initializeTransform in class AbstractFolderTransform
        Parameters:
        data - the bean to transform.
      • renderShell

        public void renderShell​(MarkupOutput out)

        Generates the shell for this Transform.

        The shell is a <div> tag that automatically surrounds the content generated by the Transform. It's used among other things by the javascript to identify the HTML associated with a bone, and by the iFrame update technology to identify a component in the page.

        The attributes to append to this <div> are obtained from the getAttributesShellDiv method; the style from the getStyleShellDiv method.
        This method calls renderCssLink and checkStatus to generate the Transform's content.
        Overrides:
        renderShell in class AbstractAppTransform
        Parameters:
        out - output by this transform
        Since:
        MicroStrategy Web 8.0.0
      • renderEmptyList

        public void renderEmptyList​(MarkupOutput out)
        Description copied from class: AbstractFolderTransform
        Renders the folder when it has no children. The HTML to render for this case includes only a SPAN HTML tag, with the empty-list corresponding style, displaying the localized descriptor for This folder is empty.
        Overrides:
        renderEmptyList in class AbstractFolderTransform
        Parameters:
        out - MarkupOutput instance where the transform's output will be saved.