Patch #5722
Custom Boolean Fields cannot be set to true
Status: | New | Start date: | 2010-06-22 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | Custom fields | |||
Target version: | - |
Description
ruby 1.8.7
Rails 2.2.3
Redmine 0.9.3.stable (MySQL)
When having a custom boolean field for my issues, I was not able to set it to true since the hidden input value was used when updating the values instead of the checkbox value. Changing the order of the hidden input and the checkbox solved this issue. Just replace in /usr/share/redmine/app/helpers/custom_fields_helper.rb around line 47:
hidden_field_tag(field_name, '0') + check_box_tag(field_name, '1', custom_value.true?, :id => field_id)
by
check_box_tag(field_name, '1', custom_value.true?, :id => field_id) + hidden_field_tag(field_name, '0')
Related issues
History
#1
Updated by Toshi MARUYAMA about 11 years ago
- Category set to Custom fields
#2
Updated by Go MAEDA over 5 years ago
- Related to Defect #16559: Project custom fields (boolean) doesn't update correctly added