
Building a form with Catalyst. The workspace on the right previews it live.
Build it
1
New form
Go to Service Management → Forms → New form. Serval creates an Untitled form and opens the workspace.
2
Describe what you want
Be specific about the questions, the options, and what happens on submit:
Create a laptop request form. Options should be MacBook Air, MacBook Pro 14-inch, Lenovo ThinkPad, and Dell Latitude, shown as cards with product photos. Require a business justification. Let people optionally say who it’s for and when they need it. On submit, file an IT ticket with the chosen model.
3
Refine it
Keep talking to Catalyst: “make the justification field longer,” “only ask for a manager if it’s for someone else.” Each change re-renders the preview.
The workspace
Preview and publish
The preview is a live session against your draft. Conditional fields appear, validation fires, and live-data workflows run. Edits autosave to a draft. The action bar shows Unpublished changes when your draft differs from what’s live. Click Publish to deploy it.Publishing never disturbs a submission in progress. A session stays on the version it opened against.
The code behind a form
Catalyst writes it, and most builders never open it. It’s under the</> button when you want it.
field.<type>(key, …): declares a question, returns[value, Component]<Form>: the root.headersets the title band,submitnames the workflow, andaccent/density/surfacepick the look- Placement props:
required,readOnly, anderrorgo on the component, not the declaration
{model === "mbp" && <Justification required />}.
Form code runs in a sandbox with no network, no filesystem, and no credentials. The only way it can cause work is by naming one of your workflows, and every call is re-authorized on the server.
Fields and layout
The field-type and validation reference.
Logic and workflows
Conditional questions, live data, and the submit handler.

