Actions
Patch #2015
closedsort by name in select box to add user to project.
Start date:
2008-10-09
Due date:
% Done:
0%
Estimated time:
Description
Pull-down to add user to project is sorted by ID.
This patch changes sort rule; sort by name.
--- app/views/projects/settings/_members.rhtml (リビジョン 23) +++ app/views/projects/settings/_members.rhtml (リビジョン 24) @@ -43,7 +43,7 @@ <% if authorize_for('members', 'new') && !users.empty? %> <% remote_form_for(:member, @member, :url => {:controller => 'members', :action => 'new', : id => @project}, :method => :post) do |f| %> <p><label for="member_user_id"><%=l(:label_member_new)%></label><br /> - <%= f.select :user_id, users.collect{|user| [user.name, user.id]} %> + <%= f.select :user_id, users.collect{|user| [user.name, user.id]}.sort_by { |arr| arr[0] } %> <%= l(:label_role) %>: <%= f.select :role_id, roles.collect{|role| [role.name, role.id]}, :selected => nil %> <%= submit_tag l(:button_add) %></p> <% end %>
Related issues
Updated by Eric Davis about 16 years ago
(Wrapped diff in pre blocks so it's more readable)
Updated by Mario Moreira almost 16 years ago
Yes, please, accept this patch. I'm using Active Directory integration, and the lastname has more than one name, so finding a user is painfull. This would help alot.
Updated by Mario Moreira almost 16 years ago
The same should happen when editing an issue on the "Assigned to" field.
Updated by Jean-Philippe Lang almost 16 years ago
- Category changed from Projects to UI
- Status changed from Resolved to Closed
- Target version set to 0.8
Fixed at model level in r2010.
New member and Assigned to lists are now alphabetically sorted.
Updated by Artem Vasiliev almost 16 years ago
Mario Moreira wrote:
The same should happen when editing an issue on the "Assigned to" field.
I've made this in my company's fork of Redmine at Github, please see #1841 for details.
Updated by Artem Vasiliev almost 16 years ago
Actions