Ruby on Rails Sunday, June 28, 2015

On Sunday, June 28, 2015 at 7:36:34 AM UTC+1, Padmahas Bn wrote:
> Hello all,
>
>
> I would like to have a form in which some of the fields are linked to model and some fields are not. When I use form_for tag it binds to a particular model and I cannot create form fields that aren't correspond to one of the column name of the table (Model). Hence what I think is I should use form_tag instead of form_for so that it contains whatever the form fields it want but one thing I can't find by googling is how can I connect specific fields to a model leaving other fields free of model?
>

You can still use form_for, but use text_field_tag rather than f.text_field for the non model form inputs.

Fred


>
> In other words, If I have 5 text_fields in a form how can I link only 3 text_fields to a model and leave other 2 fields free?
>
>
> Thank you.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/cb72e0b1-2532-4ffa-a923-1c0a3f4fdd56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment