Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Ruby and the fly likes form_for not rendering Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Languages » Ruby
Reply Bookmark "form_for not rendering" Watch "form_for not rendering" New topic
Author

form_for not rendering

Paulo Carvalho
Ranch Hand

Joined: Nov 12, 2008
Posts: 56
Hello

I am developing an application on rails using a couchDB database. I already can connect to the database and view some information.
Now I am trying to create a new object of my model.

My model is named author. My controller is named authors.

The code of my model is the following one:



The code of my controller is the following one:



The code of my new.html.erb file is the following one:



The list method is working fine, it shows what I am expecting to.
However, the "new" html page does not shows anything except the title and the "back" link. No error is generated. Everything is ok except that the form is not generated/displayed/rendered.
Does anyone have an idea about the problem/solution of it?
Thank you
Best regards
Katrina Owen
Sheriff

Joined: Nov 03, 2006
Posts: 1334
    
  11
Hi there,

You didn't say which version of Rails you're using, but I'm going to just assume Rails 3 for a second.

Have you tried changing this:



into



?
Paulo Carvalho
Ranch Hand

Joined: Nov 12, 2008
Posts: 56
Yes, this was the problem...

Thank you very much.

Best regards.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: form_for not rendering
 
Similar Threads
servlet mapping
document.forms[0].submit(); throws Invalid Argument in IE
spring mvc with tiles hibernate validator @valid giving error
Building Session Factory - Null pointer Exception
Rough Start