Class ReadViewCustomScripting

This class represents the API for custom scripting related to read views.

Hierarchy

  • CslBase
    • ReadViewCustomScripting

Properties

componentId: string = ''

The component id of the current view instance.

Accessors

  • get componentConfig(): Component
  • The configuration of the component to render.

    Returns Component

  • get htmlElement(): any
  • The rendered HTML of the view.

    Returns any

  • get viewConfig(): ContextManager | UpdateView | MultiRecordView | SingleRecordView | CreateView
  • The configuration of the view to render.

    Returns ContextManager | UpdateView | MultiRecordView | SingleRecordView | CreateView

  • get viewFields(): ViewField[]
  • The viewFields of the view.

    Returns ViewField[]

Methods

  • Get translation for the key provided. When the key is not found in the translation files (original or extended), the translate key is returned. Check the Translation for more information: https://docs.ometa.net/latest/public/articles/data-visualisation/views/translations/translations.html

    Returns

    The translation of the given key.

    Example

    // Get the save text in user's language.
    const saveText = CSL.translate('save');

    // Get the translation for a custom made key.
    const myTitle = CSL.translate('myProject.orderTitle');

    Parameters

    • translateKey: string

      The key of the translation to get.

    Returns any

Generated using TypeDoc