Sha256: e3ba9c49deb593e405ea54676fe4f19f415ef4d601be209d338fc391adc88f67

Contents?: true

Size: 1.4 KB

Versions: 6

Compression:

Stored size: 1.4 KB

Contents

<h2>Selected Option Types</h2>
<table class="option-types">
	<thead>
		<tr>
			<th>Name</th>
			<th>Display</th>
			<th>Action</th>
		</tr>
	</thead>
	<tbody>
		<% @product.selected_options.each do |so| %>
			<tr>
				<td><%=so.option_type.name%></td>
				<td><%=so.option_type.presentation%></td>
				<td>
				  <%= link_to_remote "Remove",
				                     :url => {:action => 'remove_option_type', :id=> @product, :product_option_type_id => so},
				                     :before => "Element.hide('select-link');Element.show('busy_indicator')", 
				                     :complete => "Element.hide('busy_indicator')",
				                     :update => 'option-type-listing' %>
				</td>
			</tr>
		<% end %>
		<% if @product.selected_options.empty? %>
			<tr>
				<td colspan="3">None Selected.</td>
			</tr>
		<% end %>
	</tbody>
</table>
<% unless @product.new_record? %>
  <span id="select-link">
	  <%= link_to_remote "Select Option Type",
	                     :url => {:controller => 'option_types', :action => 'select', :id=> @product},
	                     :before => "Element.hide('select-link');Element.show('busy_indicator')", 
	                     :complete => "Element.hide('busy_indicator');",
	                     :update => 'new-option-type' %>
  </span>
	<%= image_tag "spinner.gif", :plugin=>"spree", :style => "display:none", :id => 'busy_indicator' %>
<% end %>
<br/>
<div id="new-option-type"></div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree-0.0.9 app/views/admin/products/_option_types.rhtml
spree-0.2.0 app/views/admin/products/_option_types.rhtml
spree-0.4.1 app/views/admin/products/_option_types.html.erb
spree-0.4.0 app/views/admin/products/_option_types.html.erb
spree-0.5.0 app/views/admin/products/_option_types.html.erb
spree-0.5.1 app/views/admin/products/_option_types.html.erb