The file
input uses HTML's native file input. It allows users to select files from their device for upload. In addition to native input features, it adds support for:
The value of the file
type should always be an array of objects where each object contains a name
(string) and optional file
(File) property. When selecting new files from a user’s device, FormKit will convert the native FileList
to the required array-based structure automatically.
This structure can be used to pre-populate a file input with previously uploaded file values:
<input>
tag for upload.
The file upload process is left to your form’s submission handler. When submitting the form via full page request no further processing is necessary, however when submitting via XHR/Fetch request you will need to create an instance of FormData
with the files attached. Here is a working example:
The file
input has no unique props but the native HTML input does have a number of unique attributes that alter the behavior of the file uploader.
Prop | Type | Default | Description | ||
---|---|---|---|---|---|
Commonly used native attributes | |||||
accept | -- | -- | View on MDN | ||
capture | -- | -- | View on MDN | ||
multiple | -- | -- | View on MDN | ||
webkitdirectory | -- | -- | View on MDN | ||
Show universal props | |||||
config | Object | {} | Configuration options to provide to the input’s node and any descendent node of this input. | ||
delay | Number | 20 | Number of milliseconds to debounce an input’s value before the commit hook is dispatched. | ||
errors | Array | [] | Array of strings to show as error messages on this field. | ||
help | String | '' | Text for help text associated with the input. | ||
id | String | input_{n} | The unique id of the input. Providing an id also allows the input’s node to be globally accessed. | ||
ignore | Boolean | false | Prevents an input from being included in any parent (group, list, form etc). Useful when using inputs for UI instead of actual values. | ||
index | Number | undefined | Allows an input to be inserted at the given index if the parent is a list. If the input’s value is undefined, it inherits the value from that index position. If it has a value it inserts it into the lists’s values at the given index. | ||
label | String | '' | Text for the label element associated with the input. | ||
name | String | input_{n} | The name of the input as identified in the data object. This should be unique within a group of fields. | ||
parent | FormKitNode | contextual | By default the parent is a wrapping group, list or form — but this props allows explicit assignment of the parent node. | ||
preserve | boolean | false | Preserves the value of the input on a parent group, list, or form when the input unmounts. | ||
preserve-errors | boolean | false | By default errors set on inputs using setErrors are automatically cleared on input, setting this prop to true maintains the error until it is explicitly cleared. | ||
sections-schema | Object | {} | An object of section keys and schema partial values, where each schema partial is applied to the respective section. | ||
type | String | text | The type of input to render from the library. | ||
validation | String, Array | [] | The validation rules to be applied to the input. | ||
validation-visibility | String | blur | Determines when to show an input's failing validation rules. Valid values are blur , dirty , and live . | ||
validation-label | String | {label prop} | Determines what label to use in validation error messages, by default it uses the label prop if available, otherwise it uses the name prop. | ||
validation-rules | Object | {} | Additional custom validation rules to make available to the validation prop. |
You can target a specific section of an input using that section's "key". Read more about sections here.
Section-key | Description |
---|---|
fileList | A wrapper for the whole list of files. |
fileItem | An element containing the fileName and remove action for each file. |
fileName | The element containing the name of a file. |
removeFiles | The element that removes a file from the list. |
noFiles | The element shown when there are no files selected. |
Show universal section keys | |
outer | The outermost wrapping element. |
wrapper | A wrapper around the label and input. |
label | The label of the input. |
prefix | Has no output by default, but allows content directly before an input element. |
inner | A wrapper around the actual input element. |
suffix | Has no output by default, but allows content directly after an input element. |
input | The input element itself. |
help | The element containing help text. |
messages | A wrapper around all the messages. |
message | The element (or many elements) containing a message — most often validation and error messages. |