Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • Models are used to display content in the layout

  • Typically used for record creation or editing, as well as various types of messaging

  • A Model needs to be added when you perform any action in an event

  • There are 2 types of Model

    • Single Record Model:

      • The single record model is generally used when only a single record needs to be displayed at a time

    • MultiRecord Multirecord Model:

      • The multi-record model is used when multiple records need to be displayed at a time

Model Creation

  • Create a MultiRecord Multirecord model

    • Go to the Modeltab

    • Click on the + icon

    • Enter information, click Save

...

  1. Label: Label is used to identify the model at the UI

  2. Name: Name is the unique identifier of the model

  3. Type: Type: Display the model's type

    1. There are five types that are Record, API, Aggregate , and Item

    2. Select the type from the dropdown menu

  4. Record Count: Record count indicate which record should be created

    1. There are two types of records, Single record , and Multirecord

    2. Select the record count from the dropdown menu

  5. Is Shared?:

  6. Object Def: You can bind the object with the model

    1. The complete list of objects in your instance is displayed

    2. Select the object from the dropdown menu

  7. Offset: You can set the offset for the query on the object. If the offset is ā€œnā€œ then the query will take the records ā€œn+1ā€ onwards

    1. e.g. Set Offset: 0, then the query will take the record 1 onwards

  8. Limit: Set the limit for how many records you want to display at a time

  9. Order By: You can set the order by on the fields to records to be queried and displayed in the Model

    1. Click on the + icon

    2. Fill in the information, click Save

...