Skip to main content
Version: 2.1.4

IListFormFieldProps

3p-core v2.1.4


3p-core / IListFormFieldProps

Interface: IListFormFieldProps

Props for the ListFormField component, which dynamically renders a SharePoint field.

Extends

  • ICommonProps

Properties

PropertyTypeDescription
className?stringOptional CSS class for the container element.
dependencies?any[]List of dynamic dependencies to watch for triggering re-render of the field.
fieldInternalNamestringThe internal name of the SharePoint field to render.
label?stringCustom label text. Defaults to the SharePoint field's display name if not provided.
labelStyle?"none" | "normal" | "inline" | "invisible"Controls label rendering behavior. - normal: label is visible above or beside the control - none: no label is rendered - invisible: label is rendered but visually hidden (for accessibility) - inline: label is rendered beside the control
onRenderControl?(props) => ReactElementOptional custom renderer for the field control. Can be used to override default rendering behavior.
onRenderTooltipContent?() => ReactElementOptional function to render tooltip content for the label.