The component id of the current view instance.
The configuration of the component to render.
The rendered HTML of the view.
The configuration of the view to render.
The viewFields of the view.
When using custom scripting, some functions might have been registered globally. These global functions on their turn can use the CSL but when this happens, the Angular change detection cycle with NgZone is not triggered. This function will wrap any calls that might cause unexpected behavior inside an NgZone wrapper to ensure change detection will be run after calling the CSL function from inside a globally registered function.
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
The translation of the given key.
// 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');
The key of the translation to get.
Generated using TypeDoc
This class is the custom scripting library that allows configurators to implement custom scripting in a backwards compatible way.