Created
April 18, 2016 21:55
-
-
Save kalbac/5b11d93f644d815221c41a5fec18d7f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery(function( $ ){ | |
| if( ! $().select2() || typeof( wc_params ) == "undefined" ) return; | |
| $('#woocommerce_edostavka_city_origin_name').select2({ | |
| placeholder: 'Выберите город', | |
| placeholderOption: 'first', | |
| width: '100%', | |
| ajax: { | |
| url: wc_params.api_url, | |
| method: 'POST', | |
| dataType: "jsonp", | |
| delay: 250, | |
| data: function (params) { | |
| return { | |
| q: params, | |
| name_startsWith: params, | |
| countryCodeList: function () { return [wc_params.default_country] } | |
| }; | |
| }, | |
| processResults: function ( data ) { | |
| return { | |
| results: $.map( data.geonames, function ( item ) { | |
| if( ! item || item.countryIso == null || item.countryIso !== wc_params.default_country ) return; | |
| return { | |
| id: item.name, | |
| city_id: item.id, | |
| text: item.cityName | |
| } | |
| }) | |
| }; | |
| }, | |
| cache: true | |
| }, | |
| minimumInputLength: 1, | |
| initSelection: function (element, callback) { | |
| callback({ | |
| 'id': element.val(), | |
| 'text': element.val() | |
| }); | |
| }, | |
| formatSelection: function( data ) { | |
| return data.text; | |
| }, | |
| }).on('select2-selecting', function( event ) { | |
| $('#woocommerce_edostavka_city_origin').val( event.object.city_id ); | |
| });; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment