Hi I have this model
Model item
class Inventory::Item < ActiveRecord::Base has_many :types, :class_name => \"ItemType\" attr_accessible :na
You can also set default order in your Model like this:
default_scope order("#{self.table_name}.item_name ASC")
This will sort items by item_name without any change in controller