Skip to content

Commit e6f4a13

Browse files
authored
Update Form.php
1 parent e4a6173 commit e6f4a13

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

src/Form.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,16 @@ public function getComponentAjaxMultiSelect(string $name, bool $throw = true): ?
7676
return parent::getComponent($name, $throw);
7777
}
7878

79+
public function getComponentDynamicSelect(string $name, bool $throw = true): ?\ADT\Components\AjaxSelect\DynamicSelect
80+
{
81+
return parent::getComponent($name, $throw);
82+
}
83+
84+
public function getComponentDynamicMultiSelect(string $name, bool $throw = true): ?\ADT\Components\AjaxSelect\DynamicMultiSelect
85+
{
86+
return parent::getComponent($name, $throw);
87+
}
88+
7989
public function getComponentCheckbox(string $name, bool $throw = true): ?Nette\Forms\Controls\Checkbox
8090
{
8191
return parent::getComponent($name, $throw);
@@ -135,4 +145,4 @@ public function addError($message, bool $translate = true): void
135145
}
136146
parent::addError($message, false);
137147
}
138-
}
148+
}

0 commit comments

Comments
 (0)