Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.29 KB

app-list-cloud.component.md

File metadata and controls

46 lines (34 loc) · 1.29 KB
Title Added Status Last reviewed
App List Cloud Component
v3.0.0
Experimental
2019-01-08

Shows all deployed cloud application instances.

Basic Usage

<adf-cloud-app-list 
    [layoutType]="'GRID'">
</adf-cloud-app-list>

You can show custom content when there are no apps available by supplying an <adf-custom-empty-content> section:

<adf-cloud-app-list
    [layoutType]="'GRID'">
        <adf-custom-empty-content>
            No Apps present
        </adf-custom-empty-content>
</adf-cloud-app-list>

Class members

Properties

Name Type Default value Description
layoutType string (required) Defines the layout of the apps. There are two possible values, "GRID" and "LIST".

Events

Name Type Description
appClick EventEmitter<ApplicationInstanceModel> Emitted when an app entry is clicked.