Displaying 1 result from an estimated 1 matches for "clearfilter".
Did you mean:
  charfilter
  
2012 Oct 16
8
<form> tag is self-closing before input fields .. (HAML generator used)
The form is inside a table, enclosing a <tr>
	= form_tag admins_backoffice_dashboards_path, :remote =>"true" do
             %tr.search
                 %th= link_to t(:clear), "#", :id => :clearFilter
	         %th= select_tag :role,
options_from_collection_for_select(Role.global, :id, :name, :selected
=> @role_id )
		 %th= text_field_tag :email,  nil,   :value => @email
		 %th= submit_tag t(:search).capitalize
the generated html code is :
<table class="table table-condensed"...