Sha256: 3c6037bf76172571f785d2c0fe79b56fc47ab79720b720f14a48bb0d557d789e
Contents?: true
Size: 730 Bytes
Versions: 46
Compression:
Stored size: 730 Bytes
Contents
require 'active_support/concern' module ExportConcern extend ActiveSupport::Concern included do # Should the action be visible # Edit By taris, it shows the button only if there are records displayed register_instance_option :visible? do # If not in index, then return true, # otherwise it wont' be added to the list # of all Actions during rails initialization # In index, instead, I show it only if there are records in the current view bindings[:controller].action_name == "index" ? (authorized? && !bindings[:controller].instance_variable_get("@objects").blank?) : true end end end # include the extension RailsAdmin::Config::Actions::Export.send(:include, ExportConcern)
Version data entries
46 entries across 46 versions & 1 rubygems