Esri / embed-template

Source code for the embed application used by ArcGIS Online to embed maps.
Apache License 2.0
11 stars 6 forks source link

Search does not Search correct attribute field #3

Closed esridoyle closed 9 years ago

esridoyle commented 9 years ago

The Search in Feature Layer does not search the attribute field specified in the webmap.

MKellyEsri commented 9 years ago

main.js line 274 needs to be changed from

source.searchField = [searchLayer.field.name];

to

source.searchFields = [searchLayer.field.name];

kellyhutchins commented 9 years ago

@MKellyEsri is correct. Its fixed in the source now.