clear01 / forms-signal-control
Signal support for form controls.
v1.0.2
2018-04-24 10:48 UTC
Requires
- php: >=5.4.0
- nette/application: ~2.3
- nette/forms: ~2.3
Requires (Dev)
- nella/coding-standard: ~1.2.0
- nette/tester: ~1.3.0
This package is auto-updated.
Last update: 2025-03-10 22:21:00 UTC
README
Installation
composer require clear01/forms-signal-control
Usage
class InteractiveControl extends \Nette\Forms\Controls\TextInput { use \Nella\Forms\SignalControl\SignalControl; public function handleMySignal($value) { // do something } public function getControl() { /** @var \Nette\Utils\Html $el */ $el = parent::getControl(); $el->data('signal-link', $this->link('//mySignal!', array('value' => 'someValue'))); return $el; } } $form = new \Nette\Application\UI\Form; $form->addComponent(new InteractiveControl('Test'), 'test');
License
Signal form control for Nette Framework is licensed under the MIT License - see the LICENSE file for details