Igor Fedoronchuk

Results 48 comments of Igor Fedoronchuk

@cbeckr what about https://github.com/flyerhzm/bullet/blob/6ecec5dd83f05012e7b11bb0a1dd15ff43803dbe/lib/bullet/active_record52.rb#L25 this happening after ```Bullet.start_request ```

@zorab47 , yes I had, but after I figured out that parent can be called on helpers. So ```helpers.parent``` works instead of ```parent```

@zorab47 , I will setup your gem when I have free time and check if something can be improved.

looks like the this can be the easiest way ``` form do |f| #force new input if empty if f.object.variants.empty? f.object.variants

@kiddrew https://github.com/activeadmin/activeadmin/issues/3604#issuecomment-274981487 is actual (nothing changed since that time)

@jostster , for relationships you can use ```ruby ActiveAdmin.register Order do filter :user_id_not_eq, label: 'Except User', as: :select, collection: ->{ User.all } end ```

string search is still possible ``` ActiveAdmin.register User do filter :username, filters: [:not_start, :not_end, :not_cont] end ``` one issue is there is no aliases to use it like not_starts_with, not_ends_with...

@Quintasan we are using this https://github.com/activeadmin-plugins/active_admin_sidebar to improve user experience in this case

@deivid-rodriguez thanks for pinging me.

@deivid-rodriguez @ukolovda , in real world business applications there can be dozens of columns that require footer calculation for instance some sum amounts for billing software etc. in current approach...