how to embed raw html in active_admin formtastic

后端 未结 3 811
我寻月下人不归
我寻月下人不归 2020-12-18 08:37

I\'m trying to build a form, with formtastic, inside an active_admin model. The problem is I need a certain script tag and other raw HTML stuff directly inside or around the

3条回答
  •  佛祖请我去吃肉
    2020-12-18 08:59

    You can insert a div or javascript like this:

       f.form_buffers.last << content_tag(:div, "Div content here")
       f.form_buffers.last << javascript_tag("alert('hi');")
    

提交回复
热议问题