/**
  * Renders content
  * @return string
  */
 protected function renderContent()
 {
     TasksUtil::resolveShouldOpenToTask($this->getGridViewId());
     return parent::renderContent();
 }
 protected function renderContent()
 {
     $content = $this->renderConfigurationForm();
     $content .= parent::renderContent();
     return $content;
 }
 /**
  * Renders content for a list view. Utilizes a CActiveDataprovider
  * and a CGridView widget.
  * and form layout.
  * @return A string containing the element's content.
  */
 protected function renderContent()
 {
     $this->setRowsAreSelectable(false);
     return parent::renderContent();
 }