Search code examples
ruby-on-railswice-grid

how to remove reload dropdown in gem wice_grid rails?


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


Solution

  • try auto_reload: true

    example :

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