Posts by Pedro • 1 point
2 posts
-
0
votes3
answers122
viewsA: View related data during Iteration
This error means that the class nil does not contain the method name. This is because some(s) of your content has no associated client, so content client. returns nil, and content.client.name…
ruby-on-railsanswered Pedro 1 -
0
votes2
answers218
viewsA: Add new field to the bank with Rails
The select_tag creates a specific field within params and not within the content. You need the field client_id inside content (params[:content][:client_id]), but the field being passed is probably…