%= error_messages_for 'category' %>
<%= text_field 'category', 'name' %>
<%= collection_select :category, :parent_id, @all_categories, :id, :long_name, {}, {"style" => "width:250px"} %>
<%= observe_field :category_parent_id,
:update => 'treatmentWrapper',
:url => {:action => :tax_treatments},
:with => "'category_id=#{@category.id}&parent_id=' + encodeURIComponent(value)",
:on => 'changed' -%>
<%= observe_field :category_parent_id,
:update => 'variationsWrapper',
:url => {:controller => :variations, :action => :category_variations},
:with => "'category_id=#{@category.id}&parent_id=' + encodeURIComponent(value)",
:on => 'changed' -%>
<%= render :partial => 'shared/tax_treatments', :locals => {:tax_treatments => @all_tax_treatments, :selected_treatments => @category.tax_treatments} -%>