I am trying to find a resource in solving this issue. I am using the wice grid gem for my project and I encounter this error undefined method capable_of_hosting_filter_related_icons?' for nil:NilClass
. Below is my view:
-grid(@vendors_grid) do |g|
g.column name: 'ID', attribute: 'ID'do |vendor|
vendor
[...]
link_to('Edit', vendor_index_path(vendor))
I converted the erb example from the readme file to haml. I followed the install instructions carefully to ensure I do not miss anything.