Defect #23377
closedDon't show "status" field when creating a new version
0%
Description
When creating a new version from within the issue form field with the modal dialogue, the "status" option should be hidden.
It makes no sense to set this newly created version to "closed" or "locked" because then, it isn't selectable from the isuee form field.
Defect duplicate of Feature #21416 as Feature request don't get ANY attention by the Redmine team.
And in fact, this one here could also be called a bug instead of a feature...
Files
Related issues
Updated by Jake Kemme over 8 years ago
I agree, this option makes no sense here.
A quick fix for your instance, if this is causing user issues would be to hide it via CSS
Add to your theme application.css:
/* Hide version status selection in version create dialog */
.ui-dialog .new_version p:nth-child(3) {
display: none;
}
Updated by Tobias Fischer over 8 years ago
Hi Jake,
thanks for the smooth workaround. Werks very well!
Updated by Marius BĂLTEANU over 8 years ago
- File do_not_show_status_field_on_new_version_form.patch do_not_show_status_field_on_new_version_form.patch added
I made a patch that fixes/implements this without CSS.
The patch passes all the tests and adds two new assertions:- new version form doesn't contains the status field
- edit version form contains the status field.
Updated by Marius BĂLTEANU over 8 years ago
Tobias Fischer wrote:
When creating a new version from within the issue form field with the modal dialogue, the "status" option should be hidden.
It makes no sense to set this newly created version to "closed" or "locked" because then, it isn't selectable from the isuee form field.
In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
Updated by Go MAEDA over 8 years ago
- Target version set to 3.4.0
Marius BALTEANU wrote:
In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
I agree with you.
Thanks for the patch. It looks good to me.
Setting target version to 3.4.0.
Updated by Tobias Fischer over 8 years ago
Marius BALTEANU wrote:
In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
Yeah, totally agree with you! :)
Thanks for the patch! Looking forward to see this implemented!
Updated by Toshi MARUYAMA about 8 years ago
- Has duplicate Feature #21416: Hide "status" field from new version form when it is called from modal dialogue from the issue form added
Updated by Jean-Philippe Lang about 8 years ago
- Subject changed from "status" field should not be displayed when "new version" form is displayed as modal dialogue from the issue form to Don't show "status" field when creating a new version
- Category changed from Issues to Roadmap
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Patch committed, thanks.