text_field_tag See:
http://api.rubyonrails.com/classes/ActionView/Helpers/FormTagHelper.html On Dec 15, 12:52 pm, mahmoud_cs <[email protected]> wrote: > On Dec 15, 2:31 am, Joshua Abbott <[email protected]> > wrote: > > > > > There are two problems with that. One, all that's going to do is output > > the text "text_field" not call the method. Second, text_field requires > > two arguments object_name and method. > > > So anyway, use the send method to call the text_field method in the view > > and pass in whatever args you need. > > > # Controller > > @a = 'text_field' > > > # View > > <%= send(@a, :object_name, :method) %> > > > Hope that helps. > > > -- Joshhttp://iammrjoshua.com > > unfortunately it didn't work > it display that error undefined method ` text_field ' --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

