Patch #5722

Custom Boolean Fields cannot be set to true

Added by Volker Gersabeck almost 3 years ago. Updated about 2 years ago.

Status:NewStart date:2010-06-22
Priority:NormalDue 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')

History

#1 Updated by Toshi MARUYAMA about 2 years ago

  • Category set to Custom fields

Also available in: Atom PDF