yii2-widget-select-year Widget for Yii2, created selectbox field with years.

Widget for Yii2, created selectbox field with years.

Source

Source is on GitHub at et-soft/yii2-widget-select-year

Install

Either run

$ php composer.phar require et-soft/yii2-widget-select-year "*"

or add

"et-soft/yii2-widget-select-year": "*"

to the `require` section of your composer.json file.

Examples

Show selectbox with values from 2015 (current year) to 1995 year (-20 years from current year):

<?php echo $form->field($model, 'year')->widget(etsoft\widgets\YearSelectbox::classname(), [
    'yearStart' => 0,
    'yearEnd' => -20,
 ]);
?>

Show selectbox with values from 2005 (current year - 10 years) to 2025 year (+ 10 years from current year):

<?php echo $form->field($model, 'year')->widget(etsoft\widgets\YearSelectbox::classname(), [
    'yearStart' => -10,
    'yearEnd' => 10,
 ]);
?>

Show selectbox with fix values from 2000 to 2010 years:

<?php echo $form->field($model, 'year')->widget(etsoft\widgets\YearSelectbox::classname(), [
    'yearStart' => 2000,
    'yearStartType' => 'fix',
    'yearEnd' => 2010,
    'yearEndType' => 'fix',
 ]);
?>
0 0
1 follower
113 downloads
Yii Version: 2.0
License: BSD-2-Clause
Category: User Interface
Developed by: linux2000
Created on: Aug 3, 2015
Last updated: 8 years ago

Downloads

show all