I want to write an expression which will perform an autocomplete search on the address data (which come from Feature Service), filtering the results based on whether the address contains the postcode specified by the user in the previous text field ${postcode}.
I came up with this
autocomplete search('address_text?url=https://services-eu1.arcgis.com/9jMaVDXGmPzM1yh9/arcgis/rest/services/address/FeatureServer/0', 'contains', 'address', ${postcode})but it's not working... what's interesting this is working:
autocomplete search('address_text?url=https://services-eu1.arcgis.com/9jMaVDXGmPzM1yh9/arcgis/rest/services/address/FeatureServer/0', 'contains', 'address', 'E17 8PW') Any ideas please?