Edgewall Software

Ticket #2464 (new enhancement)

Opened 2 years ago

Last modified 4 months ago

Conditional fields in tickets

Reported by: johan.regnell@… Owned by: cboos
Priority: normal Milestone: 1.0
Component: ticket system Version: 0.9.2
Severity: normal Keywords: tracobject tickettype conditional custom field
Cc: hw@…, erikand@…, sam@…, grhm.smith@…, mark.dodgson@…, oan@…, dartar@…, andrew@…

Description (last modified by cboos) (diff)

Not necessarily all possible fields should be presented to the user. There could be preconditions attached to fields, for checking if they're applicable at all and for checking if the current user can actually set/modify them.

Then, as an advanced case, instead of being an all or nothing situation, the possible content of one field could be dependent on the ticket state: see #1299, #2752 and #comment:13.

Use cases

Ability to have different ticket fields for different ticket types

(original one) When using quite different types of tickets (bug-report, requirement, etc), there is a need for different fields depending on the ticket type. This might add just the flexibility required for complying with existing development processes. Great feature in particular when support for master and child tickets is planned, trac could be more of a requirements management system beyond the issue database approach. See also duplicates: #4028, #4643

Hide the Keywords: field

See #3281

Hide some fields for new tickets

See #1580. This could be achieved quite simply by putting the ticket id in the condition.

Attachments

Change History

  Changed 2 years ago by cboos

  • keywords tracobject tickettype added
  • owner changed from jonas to cboos

Yes, that was one of the early request concerning the TicketTypes feature. Having more flexibility for the ticket properties would be nice.

There's still the open question of the UI, though: As you have to select the type of a ticket, you don't know beforehand which type specific fields you'd need.

One solution to this would be to have only the "common" fields at ticket creation type, and the "type specific" ones when editing the ticket.

Same problem when changing the ticket type, how to handle the type specific fields? Maybe when the type changes, only take into account the type change itself, possibly some changes for the common fields, and ignore any type specific field change. The type specific fields of the new type will be available for a second round of edit, after the type change has occurred.

  Changed 2 years ago by pkou at ua.fm

First of all, I would propose to allow the "type specific" fields for custom fields only. The suggestion is to show/hide "type specific" fields using JavaScript:

  • By default, all fields are shown;
  • When the page has loaded, fields for non-default type are hidden;
  • When the ticket type is changed, fields for non-selected type are

hidden, fields for the selected type are shown. This would cause layout problems that can be resolved in one of the following ways:

  • Apply new layout to the "type specific" fields when they are shown or

hidden;

  • Consider "type specific" fields as groups of fields. Layout groups

separately. Show active groups and hide other groups when the ticket type is changed. The approach could work for browsers that do not support JavaScript. I do not think that changing a field that does not belong to currently selected type is an issue.

  Changed 2 years ago by anonymous

  • cc shishz@… added

  Changed 19 months ago by cboos

  • milestone set to 1.0

#4028 marked as duplicate.

I'll soon attach here a patch going in that direction.

  Changed 17 months ago by anonymous

  • cc mr@… added

  Changed 16 months ago by anonymous

  • cc hw@… added; shishz@…, mr@… removed

  Changed 16 months ago by anonymous

#4643 marked as duplicate.

  Changed 15 months ago by anonymous

  • cc erikand@… added

I want to listen in on this..

  Changed 14 months ago by cboos

  • keywords conditional custom field added

I just closed #2752 as duplicate. That ticket was not about the type field, but about the component, but I think a generic solution could be worked out (see last comment on that ticket).

  Changed 14 months ago by cboos

  • description modified (diff)
  • summary changed from Ability to have different ticket fields for different ticket types to Optional fields in tickets

  Changed 14 months ago by cboos

  • summary changed from Optional fields in tickets to Conditional fields in tickets

  Changed 14 months ago by cboos

#1299 would be an other use case, slightly extended: instead of an all or nothing approach (the field is present or missing), its content could depend on other fields (in this case, the list of available components would depend on the selected milestone).

  Changed 13 months ago by sam@…

  • cc sam@… added

I'm keen to get this feature implemented, and I'm starting to learn enough about Trac and Python to get it implemented. I'm keen to get feedback on this to increase the chance of a patch being accepted into the trunk.

Some requirements:

  • The ability to filter out fields based on ticket data: component, milestone, ticket type, component.
  • The ability filter out fields based on user permissions.
  • The ability to filter out standard, as well as custom, fields. For some tickets you don't want a description field, just the 1-line summary.

Configuration file:

  • Add [ticket-standard] as a complement to [ticket-custom], for manipulating built-in ticket fields.
  • (field-name).conditions will set up conditional restrictions
    • (field-name).conditions.(conditional-field) can be a | separated list in one of two formats
    • A|B|C - means only show this field when conditional-field is set to A, B or C
    • !A|B|C - means only show this field when conditional-field is not set to A, B or C
  • (field-name).conditions.permission operates similarly on the permissions that the current user has.

Example configuration:

[ticket-standard]
description.conditions.type = !storycard
owner.condition.permission = TICKET_FULLACCESS

[ticket-custom]
installation = select
installation.label = Select the affected installation
installation.condition.component = Frontend|Webservice
installation.condition.milestone = !alpha1|alpha2

Suggested implementation:

  • Whenever the ticket-details form is displayed, use the current, default, and get/post data to determine which fields to show.
  • Work out which fields are going to be linked to conditions. In the case above, this will be type, component, and milestone.
  • Add an onchange javascript-refresh that reloads the page, with all current field values loaded into the querystring.
  • Using ajax would be an optional enhancement

  Changed 13 months ago by cboos

  • description modified (diff)

  Changed 13 months ago by anonymous

  • cc grhm.smith@… added

  Changed 11 months ago by cboos

  • description modified (diff)

Make it clearer that this ticket is also for conditional content of the fields.

  Changed 11 months ago by anonymous

  • cc mark.dodgson@… added

I have a real interest in this type of system being implemented. I am new to Trac so still a little unfamiliar with how the example shown would work. I just thought I would throw in how I would like this type of system to work with a real example.

Our company is a design house that builds the product from start to finish mouldings, electronics, hardware etc. Using the Trac system I brake down each of these items into components. The current missing part for Trac is that each of these components have differing version numbers.

This approach would fit our scenario perfectly.

I look forward to seeing this as a release some time

  Changed 10 months ago by anonymous

  • cc dilshod@… added

  Changed 9 months ago by anonymous

  • cc oan@… added

This would be extremely helpful! Has any work been done on it?

follow-up: ↓ 22   Changed 9 months ago by nkantrowitz

CondFields on trac-hacks implements this mostly.

  Changed 9 months ago by anonymous

Anyone knows how CondFields works/will work with 0.11?

in reply to: ↑ 20   Changed 9 months ago by anonymous

Replying to nkantrowitz:

CondFields on trac-hacks implements this mostly.

http://trac-hacks.swapoff.org/wiki/CondFieldsPlugin

  Changed 8 months ago by dartar

  • cc dartar@… added

+1 for this feature, we'd need custom fields dependent on ticket type.

The CondFields? plugin page is down at the moment.

  Changed 5 months ago by anonymous

  • cc dilshod@… removed

  Changed 4 months ago by cboos

#6661 was closed as duplicate.

  Changed 4 months ago by anonymous

  • cc andrew@… added

Add/Change #2464 (Conditional fields in tickets)

Author



Change Properties
<Author field>
Action
as new
as The resolution will be set. Next status will be 'closed'
to The owner will change. Next status will be 'new'
The owner will change to anonymous. Next status will be 'assigned'
 
Note: See TracTickets for help on using tickets.