Go to the source code of this file.
|
| with_limits () |
| This example shows how to create and render a basic textarea field with minimum and maximum number of characters limit. More...
|
|
◆ with_limits()
This example shows how to create and render a basic textarea field with minimum and maximum number of characters limit.
the input is attached to a form.
Definition at line 6 of file with_limits.php.
7{
8
10 $ui =
$DIC->ui()->factory();
11 $renderer =
$DIC->ui()->renderer();
14
15 $min_limit = 3;
16 $max_limit = 20;
17
18
19 $textarea_input = $ui->input()->field()->textarea("Textarea Input", "Just a textarea input.")->withMinLimit($min_limit)->withMaxLimit($max_limit);
20
21
22 $ctrl->setParameterByClass(
23 'ilsystemstyledocumentationgui',
24 'example_name_limited',
25 'textarea_limited'
26 );
27 $form_action =
$DIC->ctrl()->getFormActionByClass(
'ilsystemstyledocumentationgui');
28 $form = $ui->input()->container()->form()->standard($form_action, [$textarea_input]);
29
30
32 &&
$request->getQueryParams()[
'example_name_limited'] ==
"textarea_limited") {
35 } else {
37 }
38
39
40 return
41 "<pre>" . print_r(
$result,
true) .
"</pre><br/>" .
42 $renderer->render(
$form);
43}
foreach($paths as $path) $request
if(isset($_POST['submit'])) $form
References $DIC, $form, $request, and $result.