Displaying 1 result from an estimated 1 matches for "pilihan_qori".
Did you mean:
pilihan_qoris
2008 Jun 07
5
Can create record but can not update it => has_many through
...pdated.''
redirect_to :action => ''show'', :id => @product
else
render :action => ''edit''
end
end
================== product_controller.rb
product.rb
==================
class Product < ActiveRecord::Base
...
has_many :pilihan_qoris
has_many :reciters, :through => :pilihan_qoris, :source => :qori
...
qori.rb
=================
class Qori < ActiveRecord::Base
has_many :products
has_many :pilihan_qoris
has_many :creations, :through => :pilihan_qoris, :source => :product
...
=================
--~--...