Now it shows me the view but with all the objects :(

My new code:

CONTROLLER:
def buscadata
    date1 
=parse_date("#{params[:dia_ini]}/#{params[:mes_ini]}/#{params[:any_ini]}")
    date2 
=parse_date("#{params[:dia_fin]}/#{params[:mes_fin]}/#{params[:any_fin]}")
    if date1 and date2
      @lgns=Lgn.find(:all, :conditions => ['created_at >=? and 
created_at <=?', date1, date2 ])
    end
  end
######################################################################################################
  private

  def parse_date(str, format='%Y/%m/%d')
    begin
      date =str.to_date            #Date.parse(str, format) 
#strptime
      return date
    rescue ArgumentError
      return false
    end
  end


the view when I introduce the date:
<% form_tag ({:action =>'buscadata'},{:class => 'lgn'}) do%>   <!--
cuando pulse el boton ira a buscadata de lgn -->
<%= stylesheet_link_tag "show" %>


<h1>Busqueda por fechas de LGN</h1>

<p>
 <b><%='Introduzca Fecha inicial (DD/MM/AA)'%></b><br />      <!--para
introducir dia mes y año del inicio de la busqueda-->
 <%= text_field_tag :dia_ini, params[:dia_ini]%>
 <%= text_field_tag :mes_ini, params[:mes_ini]%>
 <%= text_field_tag :any_ini, params[:any_ini]%>
 </p>
 <p>
  <b><%='Introduzca Fecha Final (DD/MM/AA)'%></b><br />      <!--para
introducir dia mes y año del inicio de la busqueda-->
   <%= text_field_tag :dia_fin, params[:dia_fin]%>
 <%= text_field_tag :mes_fin, params[:mes_fin]%>
 <%= text_field_tag :any_fin, params[:any_fin]%>
 </p>

  <%= submit_tag "Buscar entre las fechas seleccionadas", :name=>nil%>

 <%end%>


the view when I show the results it's like the index view
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to