Walk: July 16

July 16, 2007 @ 08:28 PM | posted by carmelyne

(last updated: 07.16.07)

Miles: 2.755


Time: 61 mins. | Cals: 227 | Speed: 2.7 - 3.0

[ Last updated: July 16, 2007 @ 08:29 PM ]

Sorry, comments are closed for this article.

Snippets of 06/24/07

Rails 'A'..'Z' Paginate

1
2
3
4
5
6
7
8
9
10
11
# Starts with 'A'..'Z' Paginate / model
def self.sort(sort)
  if sort
    find(:all, :conditions => ['name LIKE ?', "#{sort}%"])
  else
    find(:all, :order => 'name')
  end  
end

# index action / controller
@models = Model.sort(params[:sort]) 
RailsConf 2006
I heart devChix