Sha256: d9d4e8fd7f9f2ae06f2d84449642e5401ac02729afaba3f1dacae1bc1d41a8e2

Contents?: true

Size: 1.79 KB

Versions: 9

Compression:

Stored size: 1.79 KB

Contents

<%= render :partial => 'spree/admin/shared/product_sub_menu' %>

<%= render :partial => 'spree/admin/shared/product_tabs', :locals => { :current => 'Product Properties' } %>

<%= render :partial => 'spree/shared/error_messages', :locals => { :target => @product } %>

<%= form_for @product, :url => admin_product_url(@product), :method => :put do |f| %>
  <table class="index">
    <thead>
      <tr data-hook="product_properties_header">
        <th><%= t(:property) %></th>
        <th><%= t(:value) %></th>
        <th><%= t(:action) %></th>
      </tr>
    </thead>
    <tbody id="product_properties" data-hook>
      <%= f.fields_for :product_properties do |pp_form| %>
        <%= render :partial => 'product_property_fields', :locals => { :f => pp_form } %>
      <% end %>
    </tbody>
  </table>

  <%= hidden_field_tag 'clear_product_properties', 'true' %>

  <p class="add_product_properties" data-hook="add_product_properties">
  <%= link_to_add_fields t(:add_product_properties), 'tbody#product_properties' %>

    &nbsp;&nbsp;

    <span id="new_ptype_link">
      <%= link_to t(:select_from_prototype), available_admin_prototypes_url,
                  :remote => true, 'data-update' => 'prototypes' %>
    </span>
  </p>
  <div id="prototypes" data-hook></div>
    <%= image_tag 'spinner.gif', :plugin => 'spree', :style => 'display:none;', :id => 'busy_indicator' %>
    <br />
  <%= render :partial => 'spree/admin/shared/edit_resource_links' %>
<% end %>

<%= javascript_tag do -%>
  var properties = [<%= @properties.map{|id| "'#{id}'"}.join(', ') %>];

  $("#product_properties input.autocomplete").live("keydown", function(){
    already_auto_completed = $(this).is('ac_input');
    if (!already_auto_completed) {
      $(this).autocomplete({source: properties});
      $(this).focus();
    }
  });
<% end -%>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spree_core-1.1.6 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.1.5 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.1.4 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.2.0 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.2.0.rc2 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.2.0.rc1 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.1.3 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.1.2 app/views/spree/admin/product_properties/index.html.erb
spree_core-1.1.2.rc1 app/views/spree/admin/product_properties/index.html.erb