Ticket #2464 (new enhancement)
Opened 6 years ago
Last modified 7 months ago
Conditional fields in tickets
| Reported by: | johan.regnell@… | Owned by: | cboos |
|---|---|---|---|
| Priority: | normal | Milestone: | next-major-0.1X |
| Component: | ticket system | Version: | 0.9.2 |
| Severity: | major | Keywords: | tracobject tickettype conditional custom field |
| Cc: | hw@…, erikand@…, sam@…, grhm.smith@…, mark.dodgson@…, oan@…, dartar@…, andrew@…, ryan@…, hans.westerveen@…, colin.white@…, mmitar@…, itamarost@…, admiralnemo@… | ||
| Release Notes: | |||
| API Changes: | |||
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
comment:1 Changed 6 years ago by cboos
- Keywords tracobject tickettype added
- Owner changed from jonas to cboos
comment:2 Changed 6 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.
comment:3 Changed 6 years ago by anonymous
- Cc shishz@… added
comment:4 Changed 5 years ago by cboos
- Milestone set to 1.0
#4028 marked as duplicate.
I'll soon attach here a patch going in that direction.
comment:5 Changed 5 years ago by anonymous
- Cc mr@… added
comment:6 Changed 5 years ago by anonymous
- Cc hw@… added; shishz@…, mr@… removed
comment:7 Changed 5 years ago by anonymous
#4643 marked as duplicate.
comment:9 Changed 5 years 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).
comment:10 Changed 5 years ago by cboos
- Description modified (diff)
- Summary changed from Ability to have different ticket fields for different ticket types to Optional fields in tickets
comment:11 Changed 5 years ago by cboos
- Summary changed from Optional fields in tickets to Conditional fields in tickets
comment:12 Changed 5 years 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).
comment:13 Changed 5 years 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
comment:14 Changed 5 years ago by cboos
- Description modified (diff)
comment:15 Changed 5 years ago by anonymous
- Cc grhm.smith@… added
comment:16 Changed 5 years ago by cboos
- Description modified (diff)
Make it clearer that this ticket is also for conditional content of the fields.
comment:17 Changed 5 years 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
comment:18 Changed 5 years ago by anonymous
- Cc dilshod@… added
comment:19 Changed 4 years ago by anonymous
- Cc oan@… added
This would be extremely helpful! Has any work been done on it?
comment:20 follow-up: ↓ 22 Changed 4 years ago by nkantrowitz
CondFields on trac-hacks implements this mostly.
comment:21 Changed 4 years ago by anonymous
Anyone knows how CondFields works/will work with 0.11?
comment:22 in reply to: ↑ 20 Changed 4 years ago by anonymous
Replying to nkantrowitz:
CondFields on trac-hacks implements this mostly.
comment:23 Changed 4 years 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.
comment:24 Changed 4 years ago by anonymous
- Cc dilshod@… removed
comment:25 Changed 4 years ago by cboos
#6661 was closed as duplicate.
comment:26 Changed 4 years ago by anonymous
- Cc andrew@… added
comment:27 Changed 4 years ago by marcus@…
+1 for this, would be very useful! (or the simple version +1580)
comment:28 Changed 3 years ago by Ryan Witt <ryan@…>
- Cc ryan@… added
+1, but maybe I will take a crack at porting http://trac-hacks.swapoff.org/wiki/CondFieldsPlugin to 0.11 for the time being!
comment:29 Changed 3 years ago by hans.westerveen@…
- Cc hans.westerveen@… added
comment:30 Changed 3 years ago by anonymous
- Cc colin.white@… added
comment:31 Changed 3 years ago by chris.bennell@…
- Cc chris.bennell@… added
comment:32 Changed 22 months ago by cboos
- Milestone changed from 1.0 to unscheduled
Milestone 1.0 deleted
comment:33 Changed 22 months ago by rblank
#9289 was closed as a duplicate.
comment:34 Changed 22 months ago by Mitar
- Cc mmitar@… added
There is another use case. We would like to add contact data for our users/customers which should be seen only for users with right permissions. All other things should be left public. So we would like to have a field which is only visible/editable to those users with a permission.
comment:35 Changed 22 months ago by Mitar
And of course it should be made secure. Not just hiding it with JavaScript but hiding it everywhere (ticket view, RSS, alternative views, ticket notifications, ticket queries, ticket search...).
comment:36 Changed 21 months ago by Arthaey <arthaey@…>
CondFieldsPlugin? is available here instead of swapoff.org: http://trac-hacks.org/wiki/CondFieldsPlugin
comment:37 Changed 20 months ago by cboos
- Milestone changed from triaging to next-major-0.1X
- Severity changed from normal to major
#9475 was closed as duplicate.
comment:38 Changed 17 months ago by itamaro
- Cc itamarost@… added
comment:39 Changed 11 months ago by anonymous
I can't believe this still isn't a feature.
comment:40 Changed 7 months ago by admiralnemo@…
- Cc admiralnemo@… added
comment:41 Changed 7 months ago by chris.bennell@…
- Cc chris.bennell@… removed



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.