Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Formulář na přidání domény
- *
- */
- protected function createComponentDomainAddForm()
- {
- // formular
- $form = new \Nette\Application\UI\Form();
- $form->onSuccess[] = callback($this, 'domainAddFormSubmitted');
- $form->onError[] = function ($form) {
- $form->presenter->invalidateControl('domainAddForm'); // takto se musi jmenovat ten snippet
- };
- return $form;
- }
Advertisement
Add Comment
Please, Sign In to add comment