Skip to main content
A newer version of this page is available. .

DashboardCurrencyEditorExtension Class

An extension that is the Web Dashboard currency editor.

Declaration

export class DashboardCurrencyEditorExtension implements IExtension

Remarks

When registered, the DashboardCurrencyEditorExtension adds the “Currency” item to the dashboard menu.

To remove this item from the menu, call the unregisterExtension(extensionNames) method and pass the extension’s unique name as a parameter:

dashboardControl.unregisterExtension('dashboard-currency-editor');

Implements

constructor(dashboardControl)

Initializes a new instance of the DashboardCurrencyEditorExtension class.

Declaration

constructor(
    dashboardControl: DashboardControl
)

Parameters

Name Type Description
dashboardControl DashboardControl

A Web Dashboard control that owns the extension.

Properties

name Property

Specifies The unique extension name.

Declaration

name: string

Property Value

Type Description
string

The unique extension name. The return value is ‘dashboard-currency-editor’.

Remarks

Warning

Do not change the unique name of the extension registered in the Web Dashboard to avoid exceptions.

Methods

start Method

Contains code that is executed when you register the dashboard extension.

Declaration

start(): void

stop Method

Contains code that is executed when you unregister the dashboard extension.

Declaration

stop(): void