Filtered
Filter dropdown list
oi-options="item for item in shopArrShort | limitTo: 3 | orderBy"
ng-model="bundle1"
multiple
For filter by other fields use default oiSelectAscSort filter with extra params
oi-options="item.name for item in shopArr track by item.id"
ng-model="bundle2"
oi-select-options="{
listFilter: 'oiSelectAscSort:[\'id\', \'category\']'
}"
multiple
You can use oiSelectAscSort:true for show original list sorted by ASC
oi-options="item.name for item in shopArr track by item.id"
ng-model="bundle3"
oi-select-options="{
listFilter: 'oiSelectAscSort:true'
}"
multiple
Also you can use both of variants oiSelectAscSort:{fields: [\'id\', \'category\'], all: true}