how to remove reload dropdown in gem wice_grid rails?

270 Views Asked by At

i folowing this tutorial : https://github.com/leikind/wice_grid , the gem generate table but how to relaod dropdown ?

1

There are 1 best solutions below

0
On BEST ANSWER

try auto_reload: true

example :

g.column name: 'Location', model: 'Location', attribute: 'name', auto_reload: true, custom_filter: :auto do |event|
       event.name
    end