# Activiti Apps Component Shows all available apps. - [Basic Usage](#basic-usage) * [Properties](#properties) * [Events](#events) - [Details](#details) * [How filter the activiti apps](#how-filter-the-activiti-apps) ## Basic Usage ```html ``` ### Properties | Name | Type | Description | | --- | --- | --- | | layoutType | string | (**required**) Define the layout of the apps. There are two possible values: GRID or LIST. | | filtersAppId | Object | Provide a way to filter the apps to show. | ### Events | Name | Description | | --- | --- | | appClick | Raised when an app entry is clicked | ## Details ### How filter the activiti apps If you want to show some specific apps you can specify them through the filtersAppId parameters ```html ``` In this specific case only the Tasks app, the app with deploymentId 15037 and the app with "my app name" will be shown. ![how-filter-apps](docassets/images/how-filter-apps.png) You can use inside the filter one of the following property ```json { "defaultAppId": "string", "deploymentId": "string", "name": "string", "id": "number", "modelId": "number", "tenantId": "number" } ```