Last active
March 15, 2016 17:17
-
-
Save courtneyphillips/b7e7df3ae007bdd8eaef to your computer and use it in GitHub Desktop.
Live-sorting via link in Rails.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def index | |
@reviews = Review.order(params[:sort]) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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