Actions
Feature #2332
openAllow search feature in custom field type list or key/value
Start date:
Due date:
% Done:
0%
Estimated time:
Compatible Redmine Version:
n/a
Pull Request Link:
Requires Documentation?:
Description
Custom fields with type list or key/value might have very long dropdown fields. It would be comfortable for the user if she could search for a list item instead of scrolling down.
Updated by liaham 14 days ago
There are several requirements for such a feature:
- Could only be supported for dropdown fields (
Redmine::FieldFormat::List#select_edit_tag
) which needs to be modified to support the autocomplete feature. - The autocomplete feature should be implemented with the option to enable or disable it for a certain field.
- Requires
CustomFieldsController#autocomplete
method and a corresponding route. - The Javacript
observeAutocompleteField
for autocomplete must be integrated in every possible form view. - Supported field formats could be List and its descendants:
- List
- List Format < List
- RecordList < List
- EnumerationFormat < RecordList
- UserFormat < RecordList
- VersionFormat < RecordList
- and other derivatives of RecordList
- Eeach supported custom field format requires a search query.
Actions