search for: estimateline

Displaying 1 result from an estimated 1 matches for "estimateline".

Did you mean: estimate_lines
2005 Aug 25
1
newbie questions about hosting address
...] Acts as list with STI To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Message-ID: <430DD826.3050203-IQIa899fVSs@public.gmane.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hi ! I have the following: class Estimate has_many :items, :class_name => ''EstimateLine'', :order => ''position'' end class EstimateLine < ActiveRecord::Base belongs_to :estimate acts_as_list :scope => :estimate end class EstimateProductLine < EstimateLine end class EstimateCommentLine < EstimateLine end When I try to insert a comment and a p...