class ActiveScaffold::Config::Update
Attributes
hide_nested_column[W]
nested_links[RW]
instance-level configuration
Public Class Methods
link()
click to toggle source
global level configuration
the ActionLink for this action
# File lib/active_scaffold/config/update.rb, line 12 def self.link @@link end
link=(val)
click to toggle source
# File lib/active_scaffold/config/update.rb, line 15 def self.link=(val) @@link = val end
new(core_config)
click to toggle source
Calls superclass method
ActiveScaffold::Config::Form.new
# File lib/active_scaffold/config/update.rb, line 4 def initialize(core_config) super self.nested_links = self.class.nested_links end
Public Instance Methods
hide_nested_column()
click to toggle source
# File lib/active_scaffold/config/update.rb, line 30 def hide_nested_column @hide_nested_column.nil? ? true : @hide_nested_column end