Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <string xmlns="http://tempuri.org/">
  2. {"AirportList":[],"CityList":[{"ExtensionData":{},"Code":"ZRH","Country":{"ExtensionData":{},"CallingCode":"41","Code":"CH","CurrencyCode":"CHF","Name":"Suiza"},"CountryCode":"","Latitude":"4736902","Longitude":"853803","Name":"Zurich"}],"CountryList":[],"RegionList":null,"ExtensionData":{},"Messages":null,"SessionKey":"","Success":true}
  3. </string>
  4.  
  5. callAjax('POST', 'ListCitiesByNameFilter', { filter: req.term }, false, function(data) {
  6. res($.map(data, function(item) {
  7. console.log(item);
  8. var description = item.Name + ", " + "someStuff" + " (" + item.Code + ") ";
  9. return {
  10. label: description,
  11. value: description,
  12. code: item.Code
  13. }
  14. }))
  15. });
  16.  
  17. res($.map(data.CallingCode, function(item)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement