pkpudev/yii2-tabularform

Grid Tabular Form Widget

Installs: 413

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Type:yii2-extension

0.5 2019-11-04 08:58 UTC

This package is auto-updated.

Last update: 2024-05-04 19:08:39 UTC


README

Tabular Form Widget

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist pkpudev/yii2-tabularform "*"

or add

"pkpudev/yii2-tabularform": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?= \pkpudev\widget\grid\TabularInput::widget([
	'title'=>'Title',
	'idField'=>'id',
	'parentIdField'=>'parent_id',
	'controls'=>[
		new InputControl(['type'=>'textInput', 'name'=>'field_name1', 'title'=>'Input 1']),
		new InputControl(['type'=>'dateInput', 'name'=>'field_name2', 'title'=>'Date 1']),
		new InputControl(['type'=>'dropDownList', 'name'=>'field_name3', 'title'=>'Options 1', 'data'=>[
			'', 6=>'Val 1', 12=>'Val 2',
		]]),
	],
	'data'=>[
		['id'=>1, 'parent_id'=>0, 'field_name1'=>null, 'field_name2'=>null, 'field_name3'=>null],
		...
	]
]); ?>

DatePicker

Get it here

"eternicode/bootstrap-datepicker": ">=v1.7.0"