I have been struggling for a while now to find a solution to this issue. How can I display the query for the third option value, which should show the filter of DB || CSLB from a json file?
<select ng-model="search.source">
<option value="DB">DB</option>
<option value="CSLB">CSLB</option>
<option value="">DB & CSLB</option>
</select>
The json data looks like this.
"validated": false,
"matches": 10,
"renewed": 2005,
"exMod": 128,
"activeYear": 2003,
"effectiveDate": "10/0/2014",
"address": {
"zip": 7806,
"state": "Virgin Islands",
"city": "Delco",
"street": "402 Lawton Street"
},
"primaryName": "Lexicondo",
"source": "DB",
"ID": 9,
"_id": "55b5d21cc1389d427f90f9f4"
Any assistance on this matter would be highly appreciated!