Skip to main content

Set Parent Component Object Properties

This node updates multiple properties of the parent component's state object.

The Set Parent Component Object Properties node allows a child to modify its container's state.

The Set Parent Component Object Properties node functions exactly like Set Component Object Properties, but it targets the nearest parent component that has a state object.

Inputs

Properties

DataDescription
PropertiesComma-separated list of properties to update on the parent.

Property Values

DataDescription
*Dynamic inputs for the values to set.

Actions

SignalDescription
DoTriggers the update.

Outputs

Events

SignalDescription
DoneTriggered when the update is complete.

Usage

Use this to bubble up events or data changes to a parent container.

Example: Form Input

  1. Parent (Form): Holds state formData.
  2. Child (Input Field):
    • On text change, use Set Parent Component Object Properties to update formData.

Detailed Behavior

  • Search: Traverses up the visual tree to find the parent state scope.

Troubleshooting

  • No Parent: Fails silently if no parent component with state is found.