ohif-viewer/Packages/ohif-core/components/bootstrap/input/select.html

19 lines
559 B
HTML
Raw Normal View History

<template name="inputSelect">
{{#baseComponent (extend this
base='baseSelect'
2016-07-15 19:44:31 +02:00
mixins=(concat 'select2 ' this.mixins)
wrappers=(concat ''
(valueIf reactive this.label 'wrapperLabel ' '')
2016-07-14 16:25:39 +02:00
this.wrappers
)
2016-07-15 19:44:31 +02:00
options=(clone this.options
multiple=(valueIf this.multiple true false)
minimumResultsForSearch=(valueIf this.hideSearch
-1 this.minimumResultsForSearch
)
)
)}}
{{>UI.contentBlock}}
{{/baseComponent}}
</template>