Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm setting up an autocomplete association following this Railscast.

I'm using find_or_initialize rather than find_or_create on the virtual category_name attribute, as I need to pass the value through some other logic.

What is the best way to persist this virtual attribute if the parent model validations fail (Product in the railscast). I want the category_name entered by the user to remain after the save path renders the form if there is an error.

I thought the value would be accessible through params[:category_name], but I am unable to set it back to the field.

Grateful for any ideas.

EDIT

Controller

class ProductsController < ApplicationController

  ...

  def create
    @product = current_user.products.build(params[:prerep])

    if @products.save
      DO SOME STUFF...

      respond_to do |format|
        format.html { redirect_to(@product, :notice => 'Product was successfully created.') }
        format.xml  { render :xml => @product, :status => :created, :location => @product }
      end

    else
      respond_to do |format|
        format.html { render :action => "new" }
        format.xml  { render :xml => @product.errors, :status => :unprocessable_entity }
      end
    end
  end
end

Model:

class Prerep < ActiveRecord::Base
  attr_accessible ..., :category_name, ... 
  attr_reader ...
  attr_accessor ...

  belongs_to :user, :category

  has_many ...

  validates ...

  def category_name
    category.try(:name)
  end  

  def category_name=(name)
    product_category = Category.find_or_initialize_by_name(name) if name.present?
    self.category = if product_category.new_record?
      product_category ...SET SOME ATTRIBUTES...
      product_category.save(:validate => false)
      product_category
    else
      product_category
    end
  end
end
share|improve this question
1  
The problem is the redirection, why can't you render instead? – apneadiving May 12 '12 at 20:56
hi @apneadiving, sorry for my poorly worded question. The controller is actually rendering the form on eror, not redirecting. I've updated my question to reflect this. – Andy Harvey May 13 '12 at 3:19
I have this same issue. Did you solve it? – Ryan Berry Jan 25 at 16:44

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.