Componette

Componette

nella

nella / forms-signal-control v1.0.0

Signal support for form controls

download-cloud-line composer require nella/forms-signal-control

Signal form control for Nette Framework

Build Status SensioLabsInsight Status Latest Stable Version Composer Downloads Dependency Status HHVM Status

Installation

composer require nella/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

bar-chart-fill

Statistics

download-cloud-fill
79
star-fill
3
bug-fill
1
flashlight-fill
6y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>=5.4.0)
nette/application (~2.2,<2.3.0)
nette/forms (~2.2,<2.3.0)
Componette Componette felix@nette.org