Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have problem with my form_remote_tag. it did not pass the parameters.Have been trying solutions from the net and from the ones here, but to no avail.

<%=form_remote_tag(:url=> {:action=>"showteam"},:update=>"display_div") do -%>   

          <tr>
            <th colspan="2" scope="col">Choose team&nbsp;&nbsp; &nbsp;&nbsp; </th>
          </tr>
          <tr>
            <td align="center">
            <%=select_tag ('team_id',options_for_select(@teams.collect{|t| [t.name,t.id]}))%>
           </td>

           <td><%=submit_tag "Show"%> </td>           
           </td>
          </tr>                   
         </table>
        <%=end_form_tag%>

        <div id="display_div"></div>

that is my list.rhtml view. Here's my controller.

def showteam      

  @team = params[:team_id]
  $logger.info("#{Time.now} Received rm12 >> #{@team.inspect} >> #{params[:team_id]} #{session[:user_name]} ")
  render(:layout => false)

end

SO from the controller, i get nil value for @team.inspect. is it the .rhtml file?must i do partial? Thank u.

share|improve this question
What ends up in params? Try Rails.logger.info params.inspect and look in your logs. Are all the t.name and t.id values sensible? You could check the HTML to see if the <select> makes sense. – mu is too short Aug 22 '11 at 10:01
$logger.info("@team.inspect >> #{@team.inspect} >> params[:team_id].inspect >> #{params[:team_id].inspect} ") the output @team.inspect >> nil >> params[:team_id].inspect >> nil – janey Aug 23 '11 at 3:36
could it be because of the html elements? – janey Aug 23 '11 at 3:40
Is anything in params at all? Does it work with just form_tag? Sorry, I'm fumbling about a bit as I've never used form_remote_tag. Looking at the generated HTML might be fruitful. – mu is too short Aug 23 '11 at 3:43
i did debug(params) at showteam.rhtml and nothing was sent there. the t.name & t.id came out right on the page. yes i did try with form_tag.its just that can form_tag update a div too like form_remote_tag? thanks.. :) – janey Aug 23 '11 at 6:01
show 2 more comments

1 Answer

up vote 0 down vote accepted

OK i think i have solved the problem.

It is indeed because of the HTML table tags. It seems that they have certain order for my codes to work eg so that the params are being passed.

here's the link for more details.

Thank u for those who tries to help. ;)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.