Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

13 total results found

Introduction

flyze.platform | Scripting System

Test

Cheatsheet - App Services

flyze.platform | Scripting System App

App Scripting Injections Injection Name Layer 1 Layer 2 Class Functions fyzApp env AppScriptEnvironmentService event AppScriptEventBusService destroy Unsubscriber takeUntil Unsubscriber fyzDashboard env DashboardScriptEnvironmentServ...

Cheatsheet - Dashboard Services

flyze.platform | Scripting System Dashboard

Dashboard Scripting Injections Injection Name Layer 1 Layer 2 Class Functions fyzApp env AppScriptEnvironmentService event AppScriptEventBusService destroy Unsubscriber takeUntil Unsubscriber fyzDashboard env DashboardScriptEnvironme...

Cheatsheet - Brick Services

flyze.platform | Scripting System Brick

Brick Scripting Injections Injection Name Layer 1 Layer 2 Class Functions fyzApp env AppScriptEnvironmentService event AppScriptEventBusService destroy Unsubscriber takeUntil Unsubscriber fyzDashboard env DashboardScriptEnvironmentSe...

Daten Interator

flyze.platform | Bricks

📘 Developer Guide With the Brick Data Iterator, you can repeat its nested child bricks dynamically. From a programming perspective, it behaves like a for-loop that iterates over an array of data. 🔁 Example Following Example will show How to Render Multiple Ta...

Dashboard Controller

flyze.platform | Scripting System Dashboard

Toolbar Api The toolbar api helps to add/remove buttons and groups to the app toolbar or dashboard toolbar. You can control the the visibility of a button/group with the displayCondition. You can control the appearance of a button with the displayTransformatio...

Snackbar Api

flyze.platform | Scripting System fyzUtils

openNotification(...) Special Parameter keepOpenUntilDismissOrDuration: force snackbar to stay open. if true, the snackbar will be kept open until it is dismissed or the duration is reached. If false, the snackbar will be closed after the duration is reached ...

Snackbar

flyze.platform | Bricks

📘 Developer Guide With the Snackbar-Brick, you are able to open customizable snack bars to inform the user about events and more How to open a snackbar build with the designer const { cRef: brickComponent } = fyzBrick; brickComponent.open(); How to open a sna...

Table

flyze.platform | Bricks

📘 Developer Guide With the Table Brick, you are able to implement a fully fledged Table into your Dashboards. The Table supports several features. Check the Configuration Properties for more information. You can place multiple Table Components inside the Table...

Setup

flyze.platform | Reporting Api

NodeRed Stack Starten ConnectorApi Stack Starten flyze-admin-app ConnectorApiUrl in app-config.js anpassen. 

Minimales Beispiel

flyze.platform | Reporting Api

Ein minimales Setup besteht aus 2 Kernbestandteilen Ein Script im Frontend. Ein Flow im Node Red. Folgende flyze.services müssen für ein Reporting laufen Service Beschreibung ConnectorApi Wird als Gateway genutzt, um die Reporting Api zu erreichen. ...

Dialog Api

flyze.platform | Scripting System fyzUtils

Example: Open Formular in Modal Script Example const dialog$ = fyzUtils.dialogApi.openDynamic("FormModalComponent", { componentData: { "mode": "reference", "title": "", "visible": true, "initialData": {}, // provide your in...

mergeDeep

flyze.platform | Scripting System fyzUtils

Deep-merge multiple objects. Inputs Any non-complex objects. Return Returns a new object with the merged properties. Limitations Provided objects will not be changed. Arrays inside the object will not merge. They will be overwritten. Objects cannot be complex...