The extension adds a new field to the following elements:
- Single select
- Multi select
- Multi checkbox
- Radio button
(all elements where there's a Choices field)
You can insert CSV data (see below for possible format and options) in this field. If you save the element, the CSV data is imported as Choices rows.
(see below for the given data for this result)
Require via composer
composer require "plan2net/form-options-csv"
and activate the extension through the Extension manager.
1: Label 1;1;1
2: Label 2;2
3: Label 3
4: Label 4;;1
5: "Label with ; works too";5;1
- Label is set to 'Label 1', value is set to '1' and the option is selected as default
- Label is set to 'Label 2', value is set to '2'
- Label and value are set to 'Label 3'
- Label and value are set to 'Label 4' and the option is set as default
- Escape the label with
""
(CSV standard) and you can use;
in the text too
The import field is cleared after the form element is saved.
For single select values only the first entry with a selected option is set and ignored for all other entries.
- Doesn't work within fieldset (yet)