--- title: Dropdowns ---

Simple

Array

Label for Value in Array

Select as Label for Value in Array

Label for Value in Array Track By

Multiple

Query Large Data-sets

Type aaa to see a result set or three letters of any kind to view another

Query Organizations (Infinite List)

HTML in selection

Type aaa to see a result set or three letters of any kind to view another

import picturesFormatResult from './picturesResultFormat'; demo.factory('demoDropdownService', ($log, demoDropdownResource) => { class DemoDropdownService { ... getOptions() { return { allowClear: true, placeholder: 'Find a photo', minimumInputLength: 3, query: demoDropdownResource, formatResult: picturesFormatResult, formatSelection: picturesFormatResult }; } ... } return new DemoDropdownService(); }); // picturesResultFormat.js export default (item) => { return `
${item.text}
`; };