Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you have GEODI Pro module, you can prepare and present custom reports in HTML, Text, Excel, Zip, CSV formats, and submit the reports in Text format as XML / JsonJSON.

Even if reports use different definition languages and environments, they all have Macro and Localize support.

...

Table of Contents
minLevel2

Conditionally Displaying

Using the macro in the ConditionMacro field in the jSettings definition file, the plug-in can be installed when the desired conditions are met. The project name can be entered in the ActionTargets field.

Code Block
languagejs
titleMyReport.jSettings
{
    ID:"MyReport",
	DisplayName:"[$.en:My Report;tr:Benim Raporum]",
    __type: "Factory.ActionFactory:HTMLReporter",
	ActionTargets:"*",
	ConditionMacro:'c.HasPermission("DECE.SYSTEMMANAGER")',
}

Changing the Query

With the jSettings file, you can add to the query. The definition of "AndQuery" that you add under "GenericSettings" will be added to the query that was executed when the report was received.

...