rmagnum2002
rmagnum2002

Reputation: 11421

uninitialized constant ActionView::CompiledTemplates::Category

using this tutorial

http://railscasts.com/episodes/57-create-model-through-text-field

need to make it work in my app, was on rails 3.0.7 and it worked fine, updated it to 3.1.3 and I got this error now

uninitialized constant ActionView::CompiledTemplates::Category

I would look for answers more time but now I am really short on time. I have looked into most part of google results related to this problem and no good. Need help please.

form

<%= f.collection_select :category_id, Category.find(:all), :id, :name, :prompt => "Select a Category" %>
or create one:
<%= f.text_field :new_category_name %>

model

class Tvstation < ActiveRecord::Base
  belongs_to :category
  attr_accessor :new_category_name
  before_save :create_category_from_name

  def create_category_from_name
    create_category(:name => new_category_name) unless new_category_name.blank?
  end
end

Upvotes: 10

Views: 31722

Answers (4)

Wellington1993
Wellington1993

Reputation: 369

How the others suggested I had a similar problem solved be fix of wrong model name.

Upvotes: 0

ryan2johnson9
ryan2johnson9

Reputation: 724

I was using a PORO and it wasn't loading, giving me this error. It was because I had changed the class name without changing the file name.

Upvotes: 0

rmagnum2002
rmagnum2002

Reputation: 11421

ok, just for others if they will get into this stupid things as I did, don't forget to have the category.rb in the app/models..

class Category < ActiveRecord::Base
  ...
end

Upvotes: 28

Madhan Ayyasamy
Madhan Ayyasamy

Reputation: 16538

For me, i got the similar problem in the views. My Category model is available inside namespace example

Module Financial
  class Category
  end
end

When i call simply Category.get_method. It was giving same error. so that i modified into Financial::Category that solved my problem.

Upvotes: 3

Related Questions