Selección selectiva con agrupación.

Ahora con Formtastic no tengo más que seleccionar:

= f.input :category, :as => :select, :include_blank => false, :collection => subcategories

Aquí muestro solo categorías de niños. yo sueloact_as_tree Plugin para la relación padre-hijo. Me gustaría mostrar categorías de padres también.

La selección generada de Formtastic debería verse así:

<select name="favoritefood">
  <optgroup label="Dairy products">
    <option>Cheese</option>
    <option>Egg</option>
  </optgroup>
  <optgroup label="Vegetables">
    <option>Cabbage</option>
    <option>Lettuce</option>
    <option>Beans</option>
    <option>Onions</option>
  <option>Courgettes</option>
  </optgroup>
  ⋮
</select>

¿Cómo usar la agrupación en Formtastic Select para modelo con la función act_as_tree? ¿Alguien sabe?

ACTUALIZADO

Me di cuenta de que esto debería funcionar:

= f.input :category, :include_blank => false, :group_by => :parent

pero no con error:

undefined local variable or method `object_class' for #<Formtastic::SemanticFormBuilder:0x87d3158>

Parece que hay algún error en Formtastic. He mirado a través de formtastic.rb y he encontrado object_class endetect_group_association método:

  def detect_group_association(method, group_by)
    object_to_method_reflection = self.reflection_for(method)
    method_class = object_to_method_reflection.klass

    method_to_group_association = method_class.reflect_on_association(group_by)
    group_class = method_to_group_association.klass

    # This will return in the normal case
    return method.to_s.pluralize.to_sym if group_class.reflect_on_association(method.to_s.pluralize)

    # This is for belongs_to associations named differently than their class
    # form.input :parent, :group_by => :customer
    # eg. 
    # class Project
    #   belongs_to :parent, :class_name => 'Project', :foreign_key => 'parent_id'
    #   belongs_to :customer
    # end
    # class Customer
    #   has_many :projects
    # end
    group_method = method_class.to_s.underscore.pluralize.to_sym
    return group_method if group_class.reflect_on_association(group_method) # :projects

    # This is for has_many associations named differently than their class
    # eg. 
    # class Project
    #   belongs_to :parent, :class_name => 'Project', :foreign_key => 'parent_id'
    #   belongs_to :customer
    # end
    # class Customer
    #   has_many :tasks, :class_name => 'Project', :foreign_key => 'customer_id'
    # end
    possible_associations =  group_class.reflect_on_all_associations(:has_many).find_all{|assoc| assoc.klass == object_class}
    return possible_associations.first.name.to_sym if possible_associations.count == 1

    raise "Cannot infer group association for #{method} grouped by #{group_by}, there were #{possible_associations.empty? ? 'no' : possible_associations.size} possible associations. Please specify using :group_association"

  end

En efectoclase_objeto indefinido en este método y no hay ningún método privado con ese nombre en formtastic.rb. Pero podemos usar: asociación_grupo Definir asociación explícitamente.

- semantic_form_for ([:manager, @purchase_profile]) do |f|
  - f.inputs do
    = f.input :category, :include_blank => false, :group_by => :parent, :group_association => :children
  = f.buttons

pero me encontré con otro error:

undefined method `children' for nil:NilClass

Intenté apagarActs_as_tree y escribo mis propias auto-referencias. Lo mismo que Acts_as_tree funciona como debería ser:

class Category < ActiveRecord::Base
  belongs_to :parent, :class_name => "Category", :foreign_key => "parent_id"
  has_many :children, :class_name => "Category", :foreign_key => "parent_id"
end

El error es el mismo. ¿Alguien puede ayudar?

Actualizado

Siguiente pequeño paso. Este código sin Formtastic funciona bien:

= grouped_collection_select('', :category_id, top_categories, :children, :name, :id, :name, :include_blank => true)

p.s: top_categories es un método auxiliar con una colección de categorías primarias.

Lo último es traducirlo a la sintaxis de Formtastic :)

Respuestas a la pregunta(3)

Su respuesta a la pregunta