echotrue/yii2-area

Yii2.0 area selecter

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0 2016-12-22 03:22 UTC

This package is not auto-updated.

Last update: 2024-09-28 22:56:39 UTC


README

Yii2.0 area selecter

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist echotrue/yii2-area "*"

or add

"echotrue/yii2-area": "*"

to the require section of your composer.json file.

Usage

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

 Controller :
 public function actions()
     {
         return [
             'area'    => [
                 'class' => 'echotrue\area\AreaAction',
                 'tableName' => 'china_area',
             ]
         ];
     }
            
 View:           
 <?= $form->field($model,'name')->widget(\echotrue\area\Area::className(), [
        'model'     => $model,
        'options'   => [
            'tableName' => 'china_area',
            'url'       => \yii\helpers\Url::to(['site/area'])
        ]
    ]) ?>

or

    Controller :
    public function actions()
     {
         return [
             'area'    => [
                 'class' => 'echotrue\area\AreaAction',
                 'tableName' => 'china_area',
             ]
         ];
     }
     View:
    echo \echotrue\area\Area::widget([
        'name'    => 'name',
        'options' => [
            'tableName' => 'china_area',
            'url'       => \yii\helpers\Url::to(['site/area'])
        ]
    ]);

configuration

options:

  • tableName : The table'name of the area source,without table prefix
  • url : The request url for inline actions .
  • template : default template like this , maybe you can customize your template
<div class='row'>
    {hideInput}
    <div class='col-sm-3'>{province}</div>
    <div class='col-sm-3'>{city}</div>
    <div class='col-sm-3'>{regional}</div>
</div>