Use this file to discover all available pages before exploring further.
CallHandler invokes a client-side JavaScript function registered by the app developer. Where CallTool crosses the network to your server, CallHandler runs instantly in the browser — ideal for state transformations like constraint enforcement, computed fields, or domain-specific logic that doesn’t need server involvement.
from prefab_ui.components import Sliderfrom prefab_ui.actions import CallHandlerSlider(name="infra", on_change=CallHandler("constrainBudget"))
Handlers are registered via js_actions on PrefabApp. See Custom Handlers for how to write and register them.