##// END OF EJS Templates
Change the order of checkboxes for boolean custom fields....
Change the order of checkboxes for boolean custom fields. Broken in r2887 for the Rails 2.3.4 upgrade. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2942 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2828:739e11702a81
r2828:739e11702a81
Show More
custom_fields_helper.rb
89 lines | 3.9 KiB | text/x-ruby | RubyLexer
/ app / helpers / custom_fields_helper.rb
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 # redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
module CustomFieldsHelper
Jean-Philippe Lang
Do not use javascript to hide tabs content on page loading and make tabs work with javascript disabled....
r1278 def custom_fields_tabs
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 tabs = [{:name => 'IssueCustomField', :partial => 'custom_fields/index', :label => :label_issue_plural},
{:name => 'TimeEntryCustomField', :partial => 'custom_fields/index', :label => :label_spent_time},
{:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural},
{:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural},
{:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural}
Jean-Philippe Lang
Do not use javascript to hide tabs content on page loading and make tabs work with javascript disabled....
r1278 ]
end
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 # Return custom field html tag corresponding to its format
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def custom_field_tag(name, custom_value)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 custom_field = custom_value.custom_field
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 field_name = "#{name}[custom_field_values][#{custom_field.id}]"
field_id = "#{name}_custom_field_values_#{custom_field.id}"
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
case custom_field.field_format
when "date"
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 text_field_tag(field_name, custom_value.value, :id => field_id, :size => 10) +
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 calendar_for(field_id)
when "text"
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 text_area_tag(field_name, custom_value.value, :id => field_id, :rows => 3, :style => 'width:90%')
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 when "bool"
Eric Davis
Change the order of checkboxes for boolean custom fields....
r2828 hidden_field_tag(field_name, '0') + check_box_tag(field_name, '1', custom_value.true?, :id => field_id)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 when "list"
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 blank_option = custom_field.is_required? ?
(custom_field.default_value.blank? ? "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" : '') :
'<option></option>'
select_tag(field_name, blank_option + options_for_select(custom_field.possible_values, custom_value.value), :id => field_id)
Jean-Philippe Lang
Added "Float" as a custom field format....
r857 else
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 text_field_tag(field_name, custom_value.value, :id => field_id)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 end
end
# Return custom field label tag
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def custom_field_label_tag(name, custom_value)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 content_tag "label", custom_value.custom_field.name +
(custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>" : ""),
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 :for => "#{name}_custom_field_values_#{custom_value.custom_field.id}",
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :class => (custom_value.errors.empty? ? nil : "error" )
end
# Return custom field tag with its label tag
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def custom_field_tag_with_label(name, custom_value)
custom_field_label_tag(name, custom_value) + custom_field_tag(name, custom_value)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 end
# Return a string used to display a custom value
def show_value(custom_value)
return "" unless custom_value
format_value(custom_value.value, custom_value.custom_field.field_format)
end
# Return a string used to display a custom value
def format_value(value, field_format)
return "" unless value && !value.empty?
case field_format
when "date"
Jean-Philippe Lang
Fixed: Date custom fields not displayed as specified in application settings....
r1052 begin; format_date(value.to_date); rescue; value end
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 when "bool"
Jean-Philippe Lang
Fixed: Undefined Method (l_YesNo) Being Called (#2867)....
r2473 l(value == "1" ? :general_text_Yes : :general_text_No)
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 else
value
end
end
# Return an array of custom field formats which can be used in select_tag
def custom_field_formats_for_select
CustomField::FIELD_FORMATS.sort {|a,b| a[1][:order]<=>b[1][:order]}.collect { |k| [ l(k[1][:name]), k[0] ] }
Jean-Philippe Lang
0.3 unstable...
r10 end
Jean-Philippe Lang
Initial commit...
r2 end