# File lib/cgikit/api.rb, line 109
  def other_attribute( component, associations, prefix = nil )
    key = prefix.nil? ? Declaration::OTHER_KEY : \
      "#{prefix}_#{Declaration::OTHER_KEY}".intern
    if as = associations[key] then
      as.value(component)
    else
      ''
    end
  end