Coming Soon to AppExchange - 2026

Configuring a Salesforce Calendar Without Writing Code

Sixty-plus properties sounds like a project. It is a wizard, three questions, and a live preview that shows you the calendar before you save anything.

Published 19 August 2026 · MultiDatePick

Most Salesforce components with real depth make you learn them twice: once to understand the properties, once to remember which combination you picked last time. The Setup Wizard exists so you do neither. It asks what you are scheduling, writes the configuration as metadata, and hands you a name you can reference anywhere.

Two ways in, depending on what you already know

The wizard opens on three paths, and picking the right one saves the most time.

Walk me through it

Three questions about what you are scheduling. Best when you know the business problem but not the property names.

Configure all properties

The full form with every option and a live preview. Best when you know exactly what you want.

Existing configurations

Your saved configs, listed with their component type and description. Best when you are cloning something that already works.

MultiDatePick Setup Wizard in Salesforce: the three path cards, Walk me through it, Configure all properties, and Existing Configurations
Three ways in. Most admins start on the left and never need the middle one.

The three questions that decide everything

The guided path asks about the shape of the records you want, not about properties. Every answer combination is valid, and together they determine what the component writes:

  1. Do you need times, or just dates? Dates alone, a time on each date, or a parent block with sub-blocks for the gaps inside it.
  2. Are you booking a resource? None, one at a time, or several at once.
  3. Should consecutive dates collapse into a range? One record per date, or one record with a start and an end.

Three questions, and the answers are independent, so they describe the whole grid of possibilities rather than a menu of presets. Monday through Friday for six weeks can be thirty records or six, and that is a deliberate choice you make here rather than a limitation you discover later.

MultiDatePick Setup Wizard in Salesforce: the shape-pick question page with time, resource and range questions and mini data-shape diagrams on each answer
Each answer card carries a small diagram of the records that choice produces.

A live preview, before anything is saved

The preview pane renders a working calendar underneath the form as you change properties. Turn on two-month view and it appears. Add status colors and the cells fill. It is the actual component, not a mockup, so what you approve is what you deploy.

This matters more than it sounds. The expensive mistakes in scheduling configuration are not typos, they are shape decisions you cannot see until real records exist. Seeing the calendar respond while you are still deciding removes most of that risk.

MultiDatePick Setup Wizard in Salesforce with the Live Preview pane showing a working Salesforce calendar below the component-type selector
The preview is the real component. What you see is what deploys.

Inside the tabs: Time Fields and Status & Display

Two tabs do most of the heavy lifting on a booking or scheduling config. The Time Fields step maps the start-time, end-time, and interval fields your calendar needs; the Status & Display step is where the visual polish lives, from status-driven cell colors to which fields show on hover.

MultiDatePick Setup Wizard in Salesforce: Time Fields tab with start-time, end-time, interval, business-hours and time-display-mode configured for a Booking component
Time Fields step: pick your time fields, interval, and business-hours pattern. The preview updates as you go.

Status & Display is the tab where a working calendar becomes a calendar admins actually want to use. Pick a status field, map colors to each status value, choose whether the color paints the calendar cell, the time-slot grid, or both. Add hover fields so mousing over a booking previews the details.

MultiDatePick Setup Wizard in Salesforce: Status and Display tab with status field, status colors, hover fields and edit mode configured
Status & Display step: status colors, hover fields, and edit-mode toggles, all editable with the live preview watching.

What it actually writes

Saving does not embed settings in a page. It deploys a Config__mdt Custom Metadata record. That has three consequences worth understanding:

  • It is deployable. Custom Metadata moves through your normal release pipeline, sandbox to production, like any other component.
  • It is reusable. Set configName on any component instance and it picks up the whole configuration. One config, many placements.
  • It stays in your org. Nothing is stored on a vendor server, so the configuration is yours and it is visible in Setup.
One thing worth knowing about the deploy. Custom Metadata deploys are asynchronous. The wizard waits about two minutes and then, if the record has not appeared, shows you the deploy id and a link to Setup → Deployment Status. A busy org can take longer than the wizard is willing to wait, and that is not a failure.

Import, export, and the mapping step people miss

The Import / Export tab takes a JSON configuration and turns it into a saved config. That is how the config library works: thirty-seven pre-built configurations covering time-off requests, room booking, hot-desking, interview scheduling, fleet reservation and more.

The step that saves the most time is Smart Field Mapping, and we've made it super easy. Library configs reference the demo objects; your org has its own. Instead of asking you to rewrite the JSON, the wizard scans every reference the moment you paste it, flags each one your org does not have, and puts a dropdown next to it sourced live from the object's real field list. You remap in the wizard, click Apply, and it deploys with the rewritten JSON. No text editor, no hunt-and-replace, no re-uploads.

MultiDatePick Setup Wizard in Salesforce: Smart Field Mapping table showing imported field references with green check marks for resolved ones and dropdowns for unresolved ones so an admin can pick the equivalent field on their org's object
Smart Field Mapping in action: each unresolved reference gets a dropdown sourced live from your org's schema. Remap, apply, deploy.
MultiDatePick Setup Wizard in Salesforce: Import / Export tab with a configuration JSON paste box and the export section
Paste a config, remap the fields to your schema, save. No XML, no CLI.

Export works the same way in reverse, which makes configurations shareable. A config that works in one org is a paste away from working in another.

Using the config once it exists

Drop any of the three components onto a Lightning record page, app page, home page, or Experience Cloud site, set configName to the name you chose, and leave every other property blank. The config supplies them.

The same applies inside a Screen Flow, with one thing worth knowing about hand-built flows: set Boolean properties explicitly with $GlobalConstant.True or $GlobalConstant.False. A blank Boolean in Flow is null rather than false, and the component cannot tell the difference between "off" and "never set." If you use the Copy Flow XML button on any config on the config library, the generated flow does this for you automatically for every Boolean the wrapper exposes.