Skip to main content

Pentaho+ documentation has moved!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

Customizing Analyzer Using Static Divs

Overview

Quisque mattis rutrum ligula et pellentesque. Pellentesque massa enim, pulvinar quis quam quis, aliquet dapibus augue. Aliquam feugiat suscipit turpis, nec ultrices dolor adipiscing ut.

Divs in Analyzer

To allow for customization of the Analyzer report view, divs have been added to certain attach points in the application. This allows users who embed Analyzer to have the ability to programmatically customize the application. Each div has its own hard-coded ID for retrieval using any means of DOM manipulation.

List of Available Divs

The following is a list of the available divs with examples.

Toolbar Div

This div is located on the Analyzer toolbar. It allows for the addition of new buttons and customization of existing buttons on the toolbar.

<div class="reportBtn" id="analyzer-custom-btn"></div>
Code Sample:
<script type="text/javascript">

function changeText(text)
{
elem = document.getElementById('analyzer-custom-btn');
elem.innerHTML = "My New Button";
}
</script>