Project

General

Profile

Plugins Directory » Redmine Depending Custom Fields

Author: Jan Catrysse
Website: https://github.com/jcatrysse/redmine_depending_custom_fields
Code repository: https://github.com/jcatrysse/redmine_depending_custom_fields.git
Registered on: 2025-06-26 (27 days ago)
Current version: 0.0.3
Compatible with: Redmine 6.1.x, 6.0.x, 5.1.x, 5.0.x
User ratings:   (1)

Redmine Depending Custom Fields

ATTENTION: ALPHA STAGE

This plugin provides depending / cascading custom field formats for Redmine that can be toggled via the plugin settings. Two new field formats (List (depending) and Key/Value list (depending)) are introduced in addition to the Extended user field format with options for group-based filtering and visibility of active, registered or inactive users.

Features

  1. User custom field
    1. Filter users by Redmine groups
    2. Optionally exclude administrators
    3. Choose to display active, registered and/or inactive users
    4. Users are listed under headers for active, registered and inactive status in filters
  2. Depending or Cascading custom fields
    1. Both for lists as key/value pairs
    2. New formats List (depending) and Key/Value list (depending) allow defining parent/child relationships
    3. Parent lists can depend on other lists or depending lists of the same object type
    4. Key/value lists can depend on enumerations or depending key/value lists of the same object type
    5. Parent and Child relationships between fields
    6. Relation between Parent and Child values is configurable in a matrix
    7. Child fields include a blank option to deselect and are disabled until a parent value is chosen. Descendant fields update automatically when parents are cleared and only show the allowed options
    8. Works on all objects that support custom fields such as issues, projects, time entries, versions and users
  3. Bulk edit
    1. New custom field types can be used when editing multiple issues at once
    2. Allowed values are calculated across all selected issues so only valid options remain available
    3. Javascript behaviour ensures only allowed values are selectable when parent fields change
    4. "None" can be chosen to clear a value while bulk editing
    5. Selecting "None" for a parent field automatically clears all of its dependent fields
    6. Choosing a value for a parent field hides the "No change" option on all of its descendants so invalid values can't be kept

Context menu wizard

Open the context menu on an issue list (right-click or the menu button) to access the wizard. Users who have the Edit issues permission will see a menu entry for each parent custom field that is valid for all selected issues. Choosing one of these entries expands the menu in place and shows cascading select boxes with a save button. Child fields are hidden from the normal menu so dependencies cannot be broken. The selected value is stored for every chosen issue once you click Save.

Installation

  1. Copy this plugin directory into plugins of your Redmine installation.
  2. Run bundle install if required and migrate plugins with:
    bundle exec rake redmine:plugins
  3. Copy plugin assets:
    bundle exec rake redmine:plugins:assets
  4. Restart Redmine.

Compatibility

The plugin is tested with Redmine 5.1 and should work with later versions.

Development

Tests can be run using:

bundle exec rake test

API

The plugin exposes a JSON API to read and modify the configuration of list, enumeration and depending custom fields. Each endpoint returns all attributes you normally configure in the Redmine GUI, such as name, description, required flag, visibility, trackers and projects as well as the dependency mapping. The following endpoints are available:

  • GET /depending_custom_fields – list supported custom fields.
  • GET /depending_custom_fields/:id – show a single custom field with its dependencies.
  • POST /depending_custom_fields – create a new custom field.
  • PUT /depending_custom_fields/:id – update an existing custom field.
  • DELETE /depending_custom_fields/:id – remove a custom field.

Responses contain the custom field attributes listed above including parent_custom_field_id, the possible values and the mapping of allowed child values per parent option. Parameters use the same types as in Redmine:

  • booleans for flags like is_required, is_filter, searchable, multiple, is_for_all and visible (set visible to false and provide role_ids to restrict visibility to specific roles)
  • arrays of integers for tracker_ids, project_ids and role_ids
  • arrays of strings for possible_values
  • hashes for value_dependencies
  • enumeration definitions in the enumerations array when using enumeration fields

Installation notes

Installation

  1. Copy this plugin directory into plugins of your Redmine installation.
  2. Run bundle install if required and migrate plugins with:
    bundle exec rake redmine:plugins
  3. Copy plugin assets:
    bundle exec rake redmine:plugins:assets
  4. Restart Redmine.

Changelog

0.0.3 (2025-07-15)

Compatible with Redmine 6.1.x, 6.0.x, 5.1.x, 5.0.x.

  • Handle depending fields via Redmine mail handler
  • Invalid combinations submitted via API or email are rejected server-side

0.0.2 (2025-07-07)

Compatible with Redmine 6.1.x, 6.0.x, 5.1.x, 5.0.x.

  • Add a Context menu
  • Refactor and optimize code

0.0.1 (2025-06-26)

Compatible with Redmine 6.1.x, 6.0.x, 5.1.x, 5.0.x.

User ratings

  by Jaebok Oh 5 days ago

Great Plugin!!