i Have a scenario, i need to check the value of the object property in the fields_for loop.
<%= f.semantic_fields_for :review_details do |rd| %>
<%= rd.input :review_criteria_id, :as=>:hidden %>
<% end %>
as in the loop :review_criteria_id is rendered as hidden field, but i have a scenario, on which i have to print some more information if it is a specific criteria, How can i get the value of review_criteria_id in the loop. I used
rd.review_criteria_id
but since rd is the formtastic object, so can not get the value of :review_crieteria_id.
Please guide me how to do it, i am using formtastic.
Thanks in advance.