You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to plataformate...@googlegroups.com
If I want to add some HTML markup (A link in my case) to the right of a form field input.... what is the right approach?
Thanks for any thoughts.
Carlos Antonio da Silva
unread,
Jul 15, 2012, 8:21:11 PM7/15/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to plataformate...@googlegroups.com
You'd have to use a mix of the block input and input_field, something like:
f.input :foo do
f.input_field :foo
link_to "blah", "/fuckyeah"
end
Look at the wrapping rails form helpers section [1] in SimpleForm's readme for a different example. More info for input_field can be found in the rdocs [2].