...
The property expects a comma-separated list of Reservation Template field names. You can reference cross-object fields like B25__Staff__r.Name. The property can be set in two ways:
- Directly on the component in the App Builder, in the Title Fields property
Programatically (if you are wrapping the component) through the titles property.
Code Block title Multi Scheduler Example <c-multi-schedule<B25:multiScheduleWrapper titles="Name,B25__Start_Date__c" ... (set other properties here) />
Code Block title Single Scheduler Example <c-schedule<B25:scheduleWrapper titles="Name,B25__Start_Date__c" ... (set other properties here) />
...