In this article
The Title widget displays contact information with company and role, and supports navigation to the Account page. Adapts to the layout area.
The Title widget displays contact name, role, and company, and supports navigation to the Account page. It can be used as a header on the Account Overview or Contact Overview pages or on any other page if the layout rules are suitable. The widget adapts to the characteristics of the layout area.
Example of a title widget
Here is an example of the code used to set up a Title widget:
page contact "Contact" {
mainTable: contacts:
widget title {
table: contacts:
layout column {
layout row {
layout column {
tile icon {
value: "some url for icon"
navigateTo: "sese"
}
}
layout column {
layout row {
tile value {
value: (contacts:FirstName + " ") + contacts:LastName
}
tile role {
value: contacts:ContactRole
}
tile value {
value: contacts:Title
}
}
layout row {
tile company {
value: contacts:AccountName
navigateTo: "Account1"
}
}
}
}
layout row {
tile value {
value: "Phone: "
}
tile value {
value: contacts:Phone
}
}
layout row {
tile value {
value: "Account owner: "
}
tile value {
value: accounts:AccountOwner
}
}
}
}For details of the properties and settings, refer to widget title in the CDL Reference Guide.