3 declare(strict_types=1);
    27     $ui = $DIC->ui()->factory();
    28     $request = $DIC->http()->request();
    32     $textarea_input = $ui->input()->field()->textarea(
"Textarea Input", 
"Just a textarea input.");
    35     $DIC->ctrl()->setParameterByClass(
    36         'ilsystemstyledocumentationgui',
    40     $form_action = $DIC->ctrl()->getFormActionByClass(
'ilsystemstyledocumentationgui');
    43     $form = $ui->input()->container()->form()->standard($form_action, [$textarea_input]);
    46     if ($request->getMethod() == 
"POST" && $request->getQueryParams()[
'example_name'] == 
'base') {
    47         $form = $form->withRequest($request);
    48         $result = $form->getData();
    50         $result = 
"No result yet.";
    55         "<pre>" . print_r($result, 
true) . 
"</pre><br/>" .
 
base()
 description: > The example shows how to create and render a basic textarea field and attach it to a ...