Skip to main content

UseFormControl

Provides access to the current FormControl value and a method to update the value.

Example

Ts
import { useFormControl, ReactFormInputProps } from '@vendure/admin-ui/react';import React from 'react';export function ReactNumberInput({ readonly }: ReactFormInputProps) {    const { value, setFormValue } = useFormControl();    const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {        setFormValue(val);    };    return (        <div>            <input readOnly={readonly} type="number" onChange={handleChange} value={value} />        </div>    );}
Signature
function useFormControl(): void
Was this chapter helpful?
Report Issue
Edited Feb 2, 2026·Edit this page