I have this form in a view in my project. I need to pass the task_id to a certain controller, but the log does not seem to be receiving the parameters. I don\'t kno
task_id
Hi please test with following code to send hidden value in rails, I have tried and worked for one of my application :
hidden_field_tag(name, value = nil, options = {}) public eg:
hidden_field_tag(name, value = nil, options = {})
<%= hidden_field_tag(:field_name,value=@offer_status)%>