# File lib_wpm/wpm.rb, line 2597
    def invoke
      control_widget = form.control[@properties.for_id]
      unless (control_widget) then
        raise WidgetError, "not found a widget of #{@properties.for_id}"
      end

      for component in @child_components
        component.run
      end

      nil
    end