From: Jean-Philippe Lang
Date: Sun, 20 Jan 2008 17:20:34 +0000 (+0000)
Subject: Display custom fields in two columns on the issue form.
X-Git-Tag: 0.7.0-RC1~200
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0b4a02f607a1eefb89bc37b734375fb7d70afc6c;p=redmine.git
Display custom fields in two columns on the issue form.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1086 e93f8b46-1217-0410-a6f0-8f06a7374b81
---
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb
index 25389ca63..8792c8c6e 100644
--- a/app/helpers/custom_fields_helper.rb
+++ b/app/helpers/custom_fields_helper.rb
@@ -28,7 +28,7 @@ module CustomFieldsHelper
text_field('custom_value', 'value', :name => field_name, :id => field_id, :size => 10) +
calendar_for(field_id)
when "text"
- text_area 'custom_value', 'value', :name => field_name, :id => field_id, :cols => 60, :rows => 3
+ text_area 'custom_value', 'value', :name => field_name, :id => field_id, :rows => 3, :style => 'width:99%'
when "bool"
check_box 'custom_value', 'value', :name => field_name, :id => field_id
when "list"
diff --git a/app/views/issues/_form.rhtml b/app/views/issues/_form.rhtml
index 779846f4d..d91effedf 100644
--- a/app/views/issues/_form.rhtml
+++ b/app/views/issues/_form.rhtml
@@ -38,9 +38,8 @@
:accesskey => accesskey(:edit),
:class => 'wiki-edit' %>
<%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %>
-<% for @custom_value in @custom_values %>
- <%= custom_field_tag_with_label @custom_value %>
-<% end %>
+
+<%= render :partial => 'form_custom_fields', :locals => {:values => @custom_values} %>
<% if @issue.new_record? %>