# File lib/cgikit/elements/submit.rb, line 64
    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