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 </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.
params? TryRails.logger.info params.inspectand look in your logs. Are all thet.nameandt.idvalues 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:36paramsat all? Does it work with justform_tag? Sorry, I'm fumbling about a bit as I've never usedform_remote_tag. Looking at the generated HTML might be fruitful. – mu is too short Aug 23 '11 at 3:43