I am using Formtastic 2.1.1 in Rails 3.2 (with Active Admin) and I want to insert a row into my form that does not have an input field present. Is this poss
Here's a slightly simplified form of @arsen7's answer:
f.form_buffers.last <<
"Activate interlock, dynatherms connected
".html_safe
which in my form looks like this:
And here's one that mimics ActiveAdmin's default style:
f.form_buffers.last << (<
Dynatherms connected
END
).html_safe
which looks like this: