bogdan / datagrid

Gem to create tables grids with sortable columns and filters
MIT License
1.02k stars 116 forks source link

is it possible to show two elements in one column #275

Closed MehmetCelik4 closed 5 years ago

MehmetCelik4 commented 5 years ago

Hi,

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

Thank you.

bogdan commented 5 years ago

Try something like this:

column(:two_buttons, html: true) do |model|
  content_tag(:button, ...) + content_tag(:button, ...)
end
MehmetCelik4 commented 5 years ago

It worked, Thank you :)