Data Import

Prev Next

It renders the product connection status within a colored badge.

Connection Status

The filter variants can be applied to metrics and properties holding the connection status value.

The cloud status is identified by numerical values associated with a label.

Value

Text Representation

0

OFFLINE

1

ONLINE

Null or empty values are always handled as OFFLINE.

Without this filter, the cloud status value is printed as simple text.

Filter Variants

The set of predefined filter variants that can be used to format values.

Data Import <data-import-widget>

Reconcile Connection Status

Name: reconcileConnectionStatus

Type: BOOLEAN | Optional

[reconcileConnectionStatus]="true"

Title

The title displayed on the top part of the widget box.

Name: title

Type: STRING | Optional

[title]="'Data Import'"

Rendering

Availability

Configure availability based on active features on Digital Plan on Add-ons

Name: hasFeature

Type: FEATURE (multiple) | Optional

[hasFeature]="['feature_a', 'feature_b']"

CSS Class

The name(s) of the CSS class used to customize the widget layout.

Name: class

Type: STRING | Optional

class="my-custom-class"

Visibility Condition

The expression that allows you to reduce the visibility of the element.

Name: *ngIf

Type: STRING | Optional

*ngIf="getUser().organizationId != null"

Full Syntax Example



<data-import-widget    
    [title]="'Data Import'"
    [reconcileConnectionStatus]="true"
    class="my-custom-class"
    *ngIf="getUser().organizationId != null"
    hasFeature="['feature_a', 'feature_b']"></data-import-widget>