# File lib/cgikit/elements/submit.rb, line 48
  def notify_existing_action_to_form
    ancestor = @parent
    while ancestor do
      if Form === ancestor then
        ancestor.notify_existing_action_in_container
        break
      end
      ancestor = ancestor.parent
    end
  end