Type to start searching...

Page

Workspaces contain one or more pages that arrange portlets into meaningful functional groups.

Description
A page has an optional banner and a collection of Tabs. It can be displayed conditionally based on the type of item being displayed in the workspace. The banner refers to a banner portlet, and the tabs can contain various portlets of different types.
Properties
augment : uiIdentifier

Name of a page in the augmented workspace to insert after.

Valid values based on“string”.
:?[\p{L}_][\p{L}\p{N}_]*(:[\p{L}_][\p{L}\p{N}_]*)*

Value must begin with a letter. Case and length are not restricted. Letters and numbers are allowed. Colon is used as a scope separator. Spaces and other punctuation characters are not allowed.

case : identifier

A name of class which this detail page is capable of displaying.

The first page that matches the current item's class will be displayed. If no match is found, then the last page in the list will be used. Since the match is from top to bottom, you should place the most specific case in a class hierarchy at the top. e.g. If we have a special page for UserPerson, then this page should be placed above the Person page as it is more specific. Otherwise the search will match on Person and use that page, never reaching the UserPerson page (because UserPerson is a subclass of Person).
Example


For some Workspace, the Navigator list is a mix of Person and Company records. When you
want to see the details of a particular record by clicking on it, the case property will be
used to select the appropriate Page to display.

Valid values based on“string”.
:?[\p{L}_][\p{L}\p{N}_]*(:[\p{L}_][\p{L}\p{N}_]*)*

Value must begin with a letter or an underscore. Case and length are not restricted. Letters, numbers and underscores are allowed. Colon is used as a scope separator. Spaces and other punctuation characters are not allowed.

lazy : boolean

When false, all portlets on all tabs load simultaneously. When true, portlets on hidden tabs delay loading until exposed.

name : uiIdentifier

The name of the page.

Valid values based on“string”.
:?[\p{L}_][\p{L}\p{N}_]*(:[\p{L}_][\p{L}\p{N}_]*)*

Value must begin with a letter. Case and length are not restricted. Letters and numbers are allowed. Colon is used as a scope separator. Spaces and other punctuation characters are not allowed.

Content
  • Sequence of:

    • Banner [0..1] - Reference to an optional banner portlet to display summary information at the top of a page.

    • Tab [0..*] - A page may contain any number of tabs to present and group portlets.

Parents
  • Workspace - Workspaces organizes portlets by function into pages and tabs. e.g. Contacts, Opportunities, ...