Changes between Version 11 and Version 12 of MultiSelectFieldPlugin


Ignore:
Timestamp:
Nov 1, 2015, 2:38:02 PM (9 years ago)
Author:
Olli Kallioinen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MultiSelectFieldPlugin

    v11 v12  
    5151The default config should be fine for most people, but if you need to change how the data is saved you can add these options under `[multiselectfield]` in `conf/trac.ini`:
    5252
    53 `data_delimiter` (default value: ' ')
    54 The delimiter that is used when storing the data (as the selected options are appended to a single custom text field). Space is used by default as values separated by space will be recognized by the custom text field in list mode as separate values.
     53`simple_selection` (default value: false)[[BR]]
     54Instead of the more advanced "chosen" selection box, use a standard html multiselection box.
    5555
    56 `option_strip_whitespace` (default value: true)
    57 Defined whether whitespace in the names of the predefined selectable values is removed before saving the data (whitespace will be converted to underscores). This should be enabled when using white space as data delimiter.
     56`data_delimiter` (default value: ' ')[[BR]]
     57The delimiter that is used when storing the data (as the selected options are appended to a single custom text field). Space is used by default as values separated by space will be recognized by the custom text field in list mode as separate values. NOTE: changing this option when there is already data saved with other options value is probably not a good idea.
    5858
    59 NOTE: changing options when there is already data saved with other options value is probably not a good idea.
     59`strip_whitespace` (default value: true)[[BR]]
     60Defined whether whitespace in the names of the predefined selectable values is removed before saving the data (whitespace will be converted to underscores). This should be enabled when using white space as data delimiter. NOTE: changing this option when there is already data saved with other options value is probably not a good idea.
    6061
    6162== Recent Changes