3
I have this code snippet below to load a combobox with the 'name' of all values and is working correctly.
<select
ng-model="information"
ng-options="value.id as value.name for value in information">
</select>
However, I need to exclude value.name whose id is 301 from the upload. How do I load all value.name, except value.name that has id equal to 301?
I’m not sure, but I think I’d have to build a filter and apply it to the variable
information
.– Vinícius Gobbo A. de Oliveira