run() public method

renders the widget view.
public run ( )
 public function run()
 {
     if (isset($this->form_data[$this->form_name])) {
         if ($outcome_id = @$this->form_data[$this->form_name]['outcome']) {
             $outcome = models\TicketAssignOutcomeOption::model()->findByPk((int) $outcome_id);
             if ($outcome->followup) {
                 $this->hideFollowUp = false;
             }
         }
     }
     parent::run();
 }