MuiTextField#
@palmyralabs/rt-forms-mui · form/MuiTextField.tsx
Overview#
MUI TextField wired into PalmyraForm — the default single-line text input.
Props — ITextFieldDefinition & TextFieldProps#
Common field props (see Forms overview) plus every MUI TextFieldProps (variant, placeholder, InputProps, helperText, error, …).
Ref — ITextField#
interface ITextField {
focus(): void;
getValue(): any;
setValue(v: any): void;
isValid(): boolean;
clear(): void;
}Example#
<MuiTextField
attribute="loginName"
label="Email"
variant="outlined"
required
validRule="email"
/>