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.
newandcreate– pduersteler Aug 18 '11 at 7:19