UpdateContext method: BannerTile class

Syntax

UpdateContext()

Description

Use the UpdateContext method to pass the defined context keys and values from the dashboard header component to the tiles on the fluid dashboard. For example, invoke UpdateContext in a FieldChange program to pass user-supplied values to the tiles.

Parameters

None.

Returns

None.

Example

import MYPKG:MyBannerComp;

Component MYPKG:MyBannerComp &oBanner;

&oBanner.SetKeyValue("SETID", GetField(MY_REC.SETID).Value);
&oBanner.SetKeyValue("DESCR", GetField(MY_REC.DESCR).Value);

&oBanner.UpdateContext()