I have two model

 class Book
      include Mongoid::Document

      field :name, :type => String
      field :description, :type => String

      validates_presence_of :name
    end

In second model

class Story < Book
  include Mongoid::Document

  field :feedback, :type => String
  validates_presence_of :feedback , :message => "should not be empty!"
end

When I try to create a new Story form rails console, validation of parent model and Child model working properly. If i leave blank name or feedback Story will not saved in mongodb. Up-to this everything is ok. In my view page I have three field name,description and feedback.I want to create a new Story where name and feedback should not be leave blank, if any of those two field left blank new story will not create and this page will display validation message.
but when I am trying to create a new Story form view, only parent model(Book) validation working properly, validation message in child model (Story) is displaying. From a view page I am able to create a new Story only with name, and I expect that a new Story will create must with name and feedback.

link|improve this question

71% accept rate
:feedback != :feed_back – Kyle Patterson Aug 18 '11 at 6:01
please post the controller code for new and create – pduersteler Aug 18 '11 at 7:19
I've just seen this exact same issue :/ – Karpie Dec 6 '11 at 6:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.