19 declare(strict_types=1);
39 $ui = $DIC->ui()->factory();
43 $text_input = $ui->input()->field()->text(
"Disabled Input",
"Just some disabled input")->withDisabled(
true);
46 $form = $ui->input()->container()->form()->standard(
"#", [$text_input]);
disabled()
description: > The example shows how to create and render a disabled text input field and attach it ...