Rails Active Scaffold : values of column

51 Views Asked by At
  active_scaffold :mail_template do |config|
    config.list.columns = [:name, :language_id, :autocall_traitment_type]
    config.list.sorting = {:language_id => 'ASC'}
    config.list.sorting = {:autocall_traitment_type => 'ASC'}
    config.list.sorting = {:name => 'ASC'}

    config.show.columns = [:name, :subject, :language_id, :autocall_traitment_type, :body]
    config.update.columns = [:name, :subject, :language_id, :autocall_traitment_type, :body]
    config.create.columns = [:name, :subject, :language_id, :autocall_traitment_type, :body]
    # Other config options would be here
    config.columns[:language_id].label = "Language"
    config.columns[:language_id].form_ui = :select
    config.columns[:language_id].options = Language.find(:all).map {|l| [l.name, l.id]}

With this code, i have name of language in my screen:

enter image description here but not here:

enter image description here

How to resolve this?

1

There are 1 best solutions below

1
On

Looks like the 'Mail Templates' section is showing language_id instead of the language.name.

Add a helper method to the MailTemplate model.

class MailTemplate
  def language_name
    language.name
  end
end

Then change your scaffold list.columns language_id to language_name.