Ich verwende Ruby 1.8.2 und Rails 2.3.11.
<% @answered_respondents = Inquiry.find(:all, :conditions => ["question_id = (?) AND is_answered = 1 AND is_denied = 0", q.id]) %>
<% @answered_respondents.each_with_index do |r, i| %>
<% @nene = Respondent.find(:all, :conditions => ["id = (?)", r.respondent_id ]) %>
<% @nene.each do |zz| %>
<span class="statis_answered_resp"><%= zz.email %></span>
<% end %>
<% end %>
Was ich tun möchte: Ich möchte meine Benutzer nach E-Mail sortieren (zz.email). Wie kann ich das tun?