PivotTable Field List

22 May 20173 minutes to read

Initialization

Field List, also known as Pivot Schema Designer, allows user to add, rearrange, filter and remove fields to show data in PivotGrid exactly the way they want.

Based on the datasource, Relational, bound to the PivotGrid control, PivotTable Field List will be automatically populated with Cube Information or Field Names. PivotTable Field List provides an Excel like appearance and behavior.

In-order to initialize PivotTable Field List, first you need to define a “div” tag with an appropriate “id” attribute which acts as a container for the widget. Then you need to initialize the PivotTable Field List by using the “EJ.PivotSchemaDesigner” method.

  • HTML
  • <html>
    //..
    <body>
        <!--Create a tag which acts as a container for PivotGrid-->
        <div id="PivotGrid1" style="width: 55%; height: 670px; overflow: scroll; float: left;"></div>
        <!--Create a tag which acts as a container for PivotTable Field List-->
        <div id="PivotSchemaDesigner1" style="height:650px;width:40%;"></div>
        <script type="text/babel">
            $(function(){
    	        ReactDOM.render(
                    <EJ.PivotSchemaDesigner id="PivotSchemaDesigner"></EJ.PivotSchemaDesigner>,
                    document.getElementById('PivotSchemaDesigner1')
    	        );
                ReactDOM.render(
                    <EJ.PivotGrid id="Relational" dataSource= {pivotdataSource} enableGroupingBar={true} pivotTableFieldListID="PivotSchemaDesigner"></EJ.PivotGrid>,
                    document.getElementById('PivotGrid1')
                );
            });
        </script>
    </body>
    </html>

    Layout

    The top portion of the layout shows Field or Cube items in a categorized way. They can be dynamically added into the report either by drag and drop option or through simple check box selection.

    On item(s) selection they will be placed in Row section by default except numeric based item(s) or measures, which will alone be placed in the Value section by default.

    The bottom portion of the layout is segregated as below.

    • Report Filter: Exclusively designed to filter an item(s) placed in this particular position of the layout.
    • Value Section: The value label usually displays the numeric value item(s) present in the report.
    • Column Section: It is used to display item(s) as column header and values in the PivotGrid control.
    • Row Section: It is used to display item(s) as row header and values in the PivotGrid control.

    UI Interactions

    By Drag and Drop

    You can alter the report on fly through drag-and-drop operation. You can drag any item from Field List and drop into column, row, value or filter section available at the bottom of the Field List.

    By Drag and Drop to Grid Headers

    You can also drag and drop elements from field list to grid headers.

    By Treeview Selection

    You can also alter the report on fly through check and uncheck option as an alternate. By default, fields will be added to the Row Label when checked.

    By Context Menu

    You can also alter the report by using context menu.

    Searching Values

    Search option available in Field List allows you to search a specific value that needs to be filtered from the list of values inside the filter pop-up window.

    Filtering

    Values can be filtered by checking/unchecking the check box besides them, inside the filter pop-up window. At least one value needed to be checked state while filtering otherwise “Ok” button will be disabled.