Ruby on Rails Thursday, January 30, 2014

could you provide the counters_controller.rb code? Seems that your variable raw_counter is not set properly...



2014-01-30 Marie Bellec <mariejbellec@gmail.com>

Hello ! 

I try to bind two pages together, a page which serves to make a research and a page which posts the result of the research.

Here are two pages that I want to bind together :

http://zupimages.net/up/14/05/0efm.png (Index) 
http://zupimages.net/up/14/05/901g.png (Show) 

And here is what it currently gives me when I press the Search button :

http://zupimages.net/up/14/05/cr2r.png (Index) 
http://zupimages.net/up/14/05/f2mn.png (Show) 

Here is the code of the two pages:

Index.html.erb :

<h1>Search counter</h1>  <%= form_tag '/counters/id', method: :get %>  <table>      <tr>        <th>Identifiant</th>        <th><%= search_field_tag "counters" %></th>        <th><%= submit_tag 'Search' %></th>        <th></th>      </tr>  </table>

Show.html.erb :

<p id="notice"><%= notice %></p>    <p>    <strong>Nombre de message :</strong>    <%= @counter_msg %> </br>      <strong>Maximum de message pouvant être envoyé :</strong>    <%= @counter_max %> </br>      <strong>Reset automatique :</strong>    <%= @counter_reset %> </br>      <strong>Date du dernier reset :</strong>    <%= @counter_reset_date %> </br>  </p>      <%= link_to 'Edit', edit_counter_path(@counter) %> |  <%= link_to 'Back', counters_path %>

I would like to have your help to know where the problem comes from and how I could fix it. (I think this is a story of road, but being a beginner I do not know)

Thank you in advance for your help

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/78f656a6-13fb-4405-8417-7ee5a084116f%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Att, Antônio Augusto de Sousa Britto - 43ª turma de Ciência da Computação - UFU

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAK6FffKJaSauqDp46opevPTJXwmjvFL6P-_DZc-PDuqL7qDTAw%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment