Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This object is returned by the filteropen event and the getAllHierarchies(), getColumns(), getReportFilters(), getRows() methods. It can describe:
{
uniqueName: string,
caption: string,
dimensionUniqueName: string
dimensionCaption: string
folder: string,
levels: FieldObjectReturned[],
sort: string,
type: string
}
Property/Type | Description |
---|---|
uniqueName String | The field's unique name. |
caption String | The field's caption. |
dimensionUniqueName String | The dimension name. |
dimensionCaption String | The dimension caption. |
folder String | The field’s folder. Folders are used to group several fields in the Field List. folder supports nesting via / (e.g., "Folder/Subfolder/" ).Only for "json" , "csv" , and "api" data source types. |
levels FieldObjectReturned[] | If the field is a multilevel hierarchy, this property lists the field members that compose the hierarchy. Each member is a FieldObjectReturned with only the uniqueName and caption properties. |
sort String | The sorting type for members: "asc" , "desc" or "unsorted" . |
type String | The field's data type. Only for "json" , "csv" , "api" , and "elasticsearch" data sources:
|
The example below shows an array of FieldObjectReturned objects returned by the getAllHierarchies() method:
flexmonster.getAllHierarchies();
/* method returns an array of FieldObjectReturned objects
[
{caption: "Business Type", uniqueName: "Business Type", type: "string"},
{caption: "Category", uniqueName: "Category", type: "string"},
{caption: "Country", uniqueName: "Country", type: "string"}
]
*/
getAllHierarchies()
getColumns()
getReportFilters()
getRows()
filteropen