/**
  * Get the current action
  *
  * @param $dc   DC_Hybrid
  * @param $html string
  *
  * @throws \Exception
  */
 public function __construct(DC_Hybrid $dc, $html = '', $forceIsSubmitted = false)
 {
     $this->dc = $dc;
     $this->dca = $dc->getDca();
     $this->html = $html;
     $this->forceIsSubmitted = $forceIsSubmitted;
     $this->dc->setRelatedAjaxRequest(true);
 }
 public function generate()
 {
     return parent::edit();
 }