how to remove reload dropdown in gem wice_grid rails?

225 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 answers

0
tardjo 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