First at all sorry if my english is not the best.

In the view I have this code:

<%= select_tag "tabla", options_for_select(["Famitel", "Polycom Kirk",
"LG Nortel", "Dimax Videovigilancia"]) %>
<%= text_field :buscar, params[:codigo_aleatorio]%>
<%= button_to "Buscar" , :action => :elijovista %>

In elijovista´s controller I need to know the item that was selected
in
tabla and the text.

my code is:
def elijovista
   debugger
   return params[:payment]


    case :tabla
        when "Famitel"
         @ticket=Ticket.find( :first, :select =>"reference",
:conditions=>['codigo_aleatorio=?',params[:codigo_aleatorio]])

        # renders app/views/zonaclientes/showFamitel
        render :template => 'zonaclientes/showFamitel'
      return
.
.
.
.
(The same for the rest of the items)
.
.
But render never works, always show the elijovista view.

Whats wrong? How can obtain the option selected in tabla?

Thanks for all


--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
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