yii2-widget-jquery-postcodes
Based on jquery.postcodes (imported by bower) allowing us to convert postcodes to address' via https://ideal-postcodes.co.uk, (*1)
Installation
Either run, (*2)
php composer.phar require --prefer-dist wubbleyou/yii2-widget-jquery-postcodes "*"
or add, (*3)
"wubbleyou/yii2-widget-jquery-postcodes": "*"
to the require section of your composer.json
file., (*4)
Usage
After installing the extension the following is required., (*5)
Add the widget to the page, please see the jQuery Demo for more options., (*6)
An API Key is required from https://ideal-postcodes.co.uk, (*7)
JQueryPostcodesWidget::widget([
'pluginOptions' =>
[
'api_key' => 'key',
'output_fields' => [
'line_1' => '#address_line_1',
'line_2' => '#address_line_2',
'post_town' => '#address_line_town',
'county' => '#address_line_county',
'postcode' => '#address_line_postcode'
],
'input_class' => 'form-control',
'button_class' => 'btn btn-default'
]])