why is error not showing on rhtml page

  • Thread starter PerfectDayToChaseTornados
  • Start date
P

PerfectDayToChaseTornados

Hi All,

Would someone please be kind enough to help? I think I've got everything
right (though obviously I havent). I am putting some validation in my model
class & expecting the error to show on the page, however it isnt. When I
submit the page with a title value, my 'created chapter' message appears &
the chapter is persisted. If I submit without the title, validation fails
(as it should), the 'something went wrong dude' message is shown. But the
'error_message_on:)chapter, :title)' is not shown on the page. I've tried
several things, but to no avail & I'm now tearing my (already thinning) hair
out! Code follows.

chapter.rb has validates_presence_of :title

chapter_controller.rb
class ChapterController < ApplicationController

def add_chapter
if request.post?
chapter = Chapter.new(params[:chapter])
previous_chapter = Chapter.find(params[:previous_chapter_id]) if
params[:previous_chapter_id]
chapter.parent = previous_chapter if previous_chapter
chapter.is_actual = false

if chapter.save
flash[:notice] = "created chapter #{chapter.title}"
redirect_to :action => 'add_chapter'
else
flash.now[:notice] = "something went wrong dude!"
end

end

flash[:parent_id] = params[:parent_id] if params[:parent_id]
end

end

add_chapter.rhtml
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<%= stylesheet_link_tag 'booksite', :media => "all" %>
</head>
<body>
<% if flash[:notice] -%>
<h1><%= flash[:notice] %></h1>
<% end -%>
<% form_for :chapter, :url => { :action => :add_chapter } do | form |%>
<p>
<label for="title">Title</label>
<%= form.text_field :title, :size => 40 %><b><%=
error_message_on:)chapter, :title) %></b>
</p>


<p>
<label for="synopsis">Synopsis</label>
<%= form.text_area :synopsis, :rows => 20, :cols => 60 %>
</p>

<p>
<label for="content">Content</label>
<%= form.text_area :content, :rows => 30, :cols => 60 %>
</p>
<% if flash[:parent_id] -%>
<%= hidden_field_tag :previous_chapter_id, flash[:parent_id],
:size => 40 %>
<% end -%>

<%= submit_tag "Submit Chapter", :class => "submit" %>

<% end %>

</body>
</html>

Many thanks :)
 
P

PerfectDayToChaseTornados

Where I was refereing to chapter in my controller I should have been
refering to @chapter, d'oh! Coming from Java to Ruby, I need to get used to
this :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top