Sha256: 6d32f1cc0619af23dc1250c3fa4ed5e0ca6b627e907ed40d8a2862c4d6e26173

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

Contents

<%= form_tag(
	url_for({
		:action => (action || 'index'),
		:options => @options,
		:size => @size
	}),
	:remote => true,
	:method => :get
) do %>
	<%= hidden_field_tag("element_id", @element.blank? ? "" : @element.id) %>
	<%= hidden_field_tag("content_id", @content.blank? ? "" : @content.id) %>
	<div class="search_field">
	<%= render_icon('search') %>
		<%= text_field_tag(
			"query",
			params['query'],
			:class => 'thin_border',
			:id => "search_input_field"
		) %>
		<%= link_to(
			"",
			url_for({
				:action => action,
				:element_id => @element.blank? ? "" : @element.id,
				:content_id => @content.blank? ? "" : @content.id,
				:options => @options,
				:size => @size
			}),
			:remote => true,
			:class => "search_field_clear",
			:id => "search_field_clear",
			:title => _("click_to_show_all"),
			:style => (params[:query].nil? ? "display: none" : "display: block")
		) %>
	</div>
	<%= submit_tag _('search'), :name => nil, :class => 'button' %>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
alchemy_cms-2.0.rc2 app/views/admin/partials/_remote_search_form.html.erb
alchemy_cms-2.0.rc1 app/views/admin/partials/_remote_search_form.html.erb