Form

High performance Form component with data scope management. Including data collection, verification, and styles.

Default

Theme Settings
English

Flat Type

English

State Control

Theme Settings
English
Quick Setting Sidebar

APIs

PropertyDescriptionTypeDefault
colonConfigure the default value of colon for Form.Item. Indicates whether the colon after the label is displayed (only effective when prop layout is horizontal)booleantrue
disabledSet form component disable, only available for antd componentsbooleanfalse
componentSet the Form rendering element. Do not create a DOM node for falseComponentType | falseform
fieldsControl of form fields through state management (such as redux). Not recommended for non-strong demand. View exampleFieldData[]-
formForm control instance created by Form.useForm(). Automatically created when not providedFormInstance-
feedbackIconsCan be passed custom icons while Form.Item element has hasFeedbackFeedbackIcons-
initialValuesSet value by Form initialization or resetobject-
labelAlignThe text align of label of all itemsleft | rightright
labelWrapwhether label can be wrapbooleanfalse
labelColLabel layout, like <Col> component. Set span offset value like {span: 3, offset: 12} or sm: {span: 3, offset: 12}object-
layoutForm layouthorizontal | vertical | inlinehorizontal
nameForm name. Will be the prefix of Field idstring-
preserveKeep field value even when field removed. You can get the preserve field value by getFieldsValue(true)booleantrue
requiredMarkRequired mark style. Can use required mark or optional mark. You can not config to single Form.Item since this is a Form level configboolean | optional | ((label: ReactNode, info: { required: boolean }) => ReactNode)true
scrollToFirstErrorAuto scroll to first failed field when submitboolean | Options | { focus: boolean }false
sizeSet field component size (antd components only)small | middle | large-
validateMessagesValidation prompt template, description see belowValidateMessages-
validateTriggerConfig field validate triggerstring | string[]onChange
variantVariant of components inside formoutlined | borderless | filledoutlined
wrapperColThe layout for input controls, same as labelColobject-
onFieldsChangeTrigger when field updatedfunction(changedFields, allFields)-
onFinishTrigger after submitting the form and verifying data successfullyfunction(values)-
onFinishFailedTrigger after submitting the form and verifying data failedfunction({ values, errorFields, outOfDate })-
onValuesChangeTrigger when value updatedfunction(changedValues, allValues)-
clearOnDestroyClear form values when the form is uninstalledbooleanfalse
gapThe gap between Form.Item label and contentnumber-
itemMinWidthThe min width of Form.Itemnumber-
variantVariant of components inside formdefault | block | ghost | puredefault
itemsTypeThe type of items in the form. default is the default type, flat is the flat type.group | flatgroup
footerThe footer of the formReactNode-
collapsibleWhether the form is collapsiblebooleantrue
activeKeyKey of the active panel(string|number)[]-
defaultActiveKeyKey of the initial active panel(string|number)[]-
onCollapseCallback function executed when active panel is changed(activeKeys:(string|number)[]) => void-

Form.Group

PropertyDescriptionTypeDefault
keyKey of the groupstring|number-
titleTitle of the groupReactNode-
childrenItems in the groupReactNode-
iconIcon of the groupLucideIcon-
defaultActiveWhether the group is default activebooleantrue
extraExtra content of the groupReactNode-
collapsibleWhether the group is collapsiblebooleantrue

Form.Item

PropertyDescriptionTypeDefault
avatarAvatar of the itemReactNode-
descDescription of the itemReactNode-
dividerWhether to show dividerbooleantrue
hiddenWhether to hide the itembooleanfalse
minWidthThe min width of the itemnumberitemMinWidth
tagTag of the itemReactNode-
colonUsed with label, whether to display : after label text.booleantrue
dependenciesSet the dependency field. See belowNamePath[]-
extraThe extra prompt message. It is similar to help. Usage example: to display error message and prompt message at the same timeReactNode-
getValueFromEventSpecify how to get value from event or other onChange arguments(..args: any[]) => any-
getValuePropsAdditional props with sub component (It's not recommended to generate dynamic function prop by getValueProps. Please pass it to child component directly)(value: any) => Record<string, any>-
hasFeedbackUsed with validateStatus, this option specifies the validation status icon. Recommended to be used only with Input. Also, It can get feedback icons via icons prop.boolean | { icons: FeedbackIcons }false
helpThe prompt message. If not provided, the prompt message will be generated by the validation rule.ReactNode-
hiddenWhether to hide Form.Item (still collect and validate value)booleanfalse
htmlForSet sub label htmlForstring-
initialValueConfig sub default value. Form initialValues get higher priority when conflictstring-
labelLabel text. When there is no need for a label but it needs to be aligned with a colon, it can be set to nullReactNode-
labelAlignThe text align of label,left | rightright
labelColThe layout of label. You can set span offset to something like {span: 3, offset: 12} or sm: {span: 3, offset: 12} same as with <Col>. You can set labelCol on Form which will not affect nest Item. If both exists, use Item firstobject-
messageVariablesThe default validate field info, description see belowRecord<string, string>-
nameField name, support arrayNamePath-
normalizeNormalize value from component value before passing to Form instance. Do not support async(value, prevValue, prevValues) => any-
noStyleNo style for true, used as a pure field control. Will inherit parent Form.Item validateStatus if self validateStatus not configuredbooleanfalse
preserveKeep field value even when field removedbooleantrue
requiredDisplay required style. It will be generated by the validation rulebooleanfalse
rulesRules for field validation. Click here to see an exampleRule[]-
shouldUpdateCustom field update logic. See belowboolean | (prevValue, curValue) => booleanfalse
tooltipConfig tooltip infoReactNode | TooltipProps & { icon: ReactNode }-
triggerWhen to collect the value of children node. Click here to see an examplestringonChange
validateDebounceDelay milliseconds to start validationnumber-
validateFirstWhether stop validate on first rule of error for this field. Will parallel validate when parallel configuredboolean | parallelfalse
validateStatusThe validation status. If not provided, it will be generated by validation rule. options: success warning error validatingstring-
validateTriggerWhen to validate the value of children nodestring | string[]onChange
valuePropNameProps of children node, for example, the prop of Switch or Checkbox is checked. This prop is an encapsulation of getValueProps, which will be invalid after customizing getValuePropsstringvalue
wrapperColThe layout for input controls, same as labelCol. You can set wrapperCol on Form which will not affect nest Item. If both exists, use Item firstobject-
layoutForm item layouthorizontal | vertical-