SetInputValue
Update an Observable input widget's value and dispatch an input event, triggering reactive updates in dependent notebook cells.
Instructions
Set the .value property of an input widget in the Observable runtime (e.g., Inputs.range, Inputs.select, Inputs.text) and dispatch an input event, triggering reactive updates to dependent values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the cell containing the input widget (e.g., "slider" if defined as `slider = Inputs.range([0, 100])`) | |
| value | Yes | The value to set (number for range, string for text/select, boolean for toggle, array of strings for checkbox) | |
| notebook | No | Target notebook (URL, path like "index" or "voronoi", or index like "0"). Optional if you've used FocusNotebook or only one notebook is connected. | |
| timeout_ms | No | Maximum time to wait in milliseconds |