Skip to content

Instantly share code, notes, and snippets.

@courtneyphillips
Last active March 15, 2016 17:17
Show Gist options
  • Save courtneyphillips/b7e7df3ae007bdd8eaef to your computer and use it in GitHub Desktop.
Save courtneyphillips/b7e7df3ae007bdd8eaef to your computer and use it in GitHub Desktop.
Live-sorting via link in Rails.
def index
@reviews = Review.order(params[:sort])
end
<%= link_to 'Sort By Alphabetical', :sort => "lower(title)" %>
<%= link_to 'Sort By Date Added', :sort => "(created_at)" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment