janmotycka/nette-forms

Extension of Nette/Application/UI/Form with other controls

dev-master 2018-10-23 09:24 UTC

This package is auto-updated.

Last update: 2024-04-24 04:36:37 UTC


README

Extension of Nette/Forms with other controls

Installation

  • It requires PHP 7.1 and upper
  • The recommended way to install is via Composer:
composer require janmotycka/nette-forms
extensions:
	- JanMotycka\Forms\DI\FormsExtension

Usage

DateInput

Add DateInput with today's date

$form->addDateInput('date', 'Datum')
	->setDefaultValue(new DateTime())
	->setBadFormatAlert('This field has not date format');

TimeInput

Add TimeInput for define

$form->addTimeInput('time', 'Čas')
	->setDefaultValue(new DateTime())
	->setBadFormatAlert('This field has not time format');

WysiwygTextArea

Add WysiwygTextArea for text styling

$form->addWysiwygTextArea('wysiwyg')
	->setDefaultValue(Html::el('p')->addText('nette')->render());