bogdan/datagrid

is it possible to show two elements in one column

MehmetCelik4 opened this issue · 2 comments

Hi,

I would like put 2 buttons in a column , is it possible ?,

Thank you.

Try something like this:

column(:two_buttons, html: true) do |model|
  content_tag(:button, ...) + content_tag(:button, ...)
end

It worked, Thank you :)