Sha256: 16e844203a9ab346e6b6518463703bf80395527bb31e582c74aada45c8f1b6d3

Contents?: true

Size: 1.27 KB

Versions: 13

Compression:

Stored size: 1.27 KB

Contents

<% number ||= 0 %>
<tr class="product_property">
  <td>
    <%= text_field_with_auto_complete :product_property, 
                                      :property_name,
                                      {:onkeypress => "return event.which == Event.KEY_RETURN ? false : true",
                                       :autocomplete => "off",
                                       :name => property_fu_name(product_property, number),
                                       :value => product_property.property ? product_property.property.name : ""
                                      },
                                      {:url => filtered_admin_properties_url,
                                       :method => :get,
                                       :with => "Object.toQueryString({q: element.value})" 
                                      } %>  
  </td>
  <td>
    <%= text_field :product_property, :property_value, {
                                       :name => property_fu_value(product_property, number),
                                       :value => product_property.value
                                      } %>
	</td>	
  <td>
  	<a href='#' onclick="$(this).up('.product_property').remove();" class="iconlink"><%= icon('delete') %> <%= t("remove") %></a>
  </td>
</tr>

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
kdmny-spree-0.0.1 app/views/admin/product_properties/_product_property.html.erb
spree-enriquez-0.9.4 app/views/admin/product_properties/_product_property.html.erb
spree-0.9.4 app/views/admin/product_properties/_product_property.html.erb
spree-0.9.3 app/views/admin/product_properties/_product_property.html.erb
spree-0.9.2 app/views/admin/product_properties/_product_property.html.erb
spree-0.9.1 app/views/admin/product_properties/_product_property.html.erb
spree-0.9.0 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.4 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.5 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.0 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.1 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.2 app/views/admin/product_properties/_product_property.html.erb
spree-0.8.3 app/views/admin/product_properties/_product_property.html.erb