Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can define what information is shown on each event block by customizing the Event Titles. To do this, set the Title Fields property on the Schedule component in the Lightning app builder. Simply enter simply provide a comma-separated list of Reservation Template field names, and they will be displayed on each event.


Image Removed


Accessibility

The property expects a comma-separated list of Reservation Template field names. The property can be set in two ways:

  1. Directly on the component in the App Builder, in the Title Fields property
    Image Added

  2. Programatically (if you are wrapping the component) through the titles property.

    Code Block
    titleMulti Scheduler Example
    <c-multi-schedule
    	titles="Name,B25__Start_Date__c"
    	... (set other properties here)
    />


    Code Block
    titleSingle Scheduler Example
    <c-schedule
    	titles="Name,B25__Start_Date__c"
    	... (set other properties here)
    />