Nvd\Crud\Form::showTextarea PHP Method

showTextarea() protected method

protected showTextarea ( )
    protected function showTextarea()
    {
        $output = Html::startTag("textarea", $this->attributes);
        $output .= $this->value;
        $output .= Html::endTag("textarea");
        return $output;
    }