Skip to main content

Tile

A tile displays customizable data in one block. This block is displayed in display table. There are two types of tiles: multilines with optional icons and multilines with photo (or failing this, the initials of a defined data).

Examples

    <Tile Identifier="Referentiel_User_Tile1" DisplayName_L1="Collaborateur : prénom, nom" EntityType="Referentiel_User" TileDesignElement="picture-text">
<Item Binding="MainRecord.FirstName" LineDisplayOrderIndicator="1" LineNumber="2" />
<Item Binding="MainRecord.LastName" LineDisplayOrderIndicator="2" LineNumber="2" />
<Item Binding="Id" LineNumber="5" />
</Tile>

<Tile Identifier="Referentiel_User_Tile2" DisplayName_L1="Collaborateur : organisation, site" EntityType="Referentiel_User" TileDesignElement="inline data-icon">
<Item Binding="MainRecord.Site.Label" LineNumber="1" />
<Item Binding="MainRecord.Service.Label" LineNumber="2" />
</Tile>

Properties

PropertyDetails
DisplayName_L1 requiredType: String Description: Display name of the tile in language 1 (up to 16).
EntityType requiredType: Int64 Description: Identifier of the entity type.
Identifier requiredType: String Description: Unique identifier of the tile.
TileDesignElement requiredType: Enumeration Description: Defines the design element ("inline data-icon" or "picture-text").

Child Element: Item

One data to display in a tile.

Examples

    <Item Binding="MainRecord.FirstName" LineDisplayOrderIndicator="1" LineNumber="2" />
<Item Binding="MainRecord.LastName" LineDisplayOrderIndicator="2" LineNumber="2" />
<Item Binding="MainRecord.EmployeeId" LineDisplayOrderIndicator="2" LineNumber="3" />

Properties

PropertyDetails
AddedMinutes optionalType: Int32 Description: Add minutes to the date field with this property. If the value is not defined, the default value is the one defined for the associated display entity property.
Binding requiredType: Int64 Description: Defines the binding path to a scalar property.
LineDisplayOrderIndicator requiredType: Int32 Description: Defines the display position of the data in the row.
LineNumber requiredType: Int32 Description: Defines the number of the line in which the data is displayed. When the tileDesignElement of the tile is "picture-text", four lines are customizable, and 2 lines are hard coded: - 5: id of the resource to navigate on click - 6: photoTag
OptimizedBinding optionalType: Int64 Description: Optimized Binding allows DisplayTables to be faster displayed. If it is filled in, it takes priority over the binding located in the TileItem.