is it possible to show two elements in one column
MehmetCelik4 opened this issue · 2 comments
MehmetCelik4 commented
Hi,
I would like put 2 buttons in a column , is it possible ?,
Thank you.
bogdan commented
Try something like this:
column(:two_buttons, html: true) do |model|
content_tag(:button, ...) + content_tag(:button, ...)
end
MehmetCelik4 commented
It worked, Thank you :)