Hi Marina,
Thanks for the reply. I've been wracking my brain with no luck on getting this working.
I've tried again tonight and noticed that the select component allows you to create an event on click to store a local variable which i can bind to the component with the property name being "selected".
Ive basically created two select components and on the filter results page I have the following JS in "where" for request.
return '{ $and: [ { "RestaurantType": "' + localStorage.getItem("restaurantTypeFilter") + '" }, { "NearestTourismCity": "' + localStorage.getItem("nearesttourismcity") + '" } ] }';
Is this is correct?