Initial Upload
This commit is contained in:
28
ui/src/templates/forms/inputs/connectorProperties.hbs
Normal file
28
ui/src/templates/forms/inputs/connectorProperties.hbs
Normal file
@@ -0,0 +1,28 @@
|
||||
{{#if isAutoComplete }}
|
||||
{{> text id=id name=name value=value title=title helpText=helpText
|
||||
customData=(arr
|
||||
(obj name='role' value='panelTagsInput')
|
||||
(obj name='auto-complete-url' value=connectorPropertiesUrl)
|
||||
(obj name='search-term-key' value=name)
|
||||
)
|
||||
}}
|
||||
{{else}}
|
||||
{{> dropdown id=id name=name value=value title=title selectType="pagedSelect"
|
||||
options=(arr (obj name='' title='')) optionsTitle="title" optionsValue="name"
|
||||
customData=(arr
|
||||
(obj name='width' value='100%')
|
||||
(obj name='allow-clear' value='true')
|
||||
(obj name='placeholder--id' value=null)
|
||||
(obj name='placeholder--value' value='')
|
||||
(obj name='search-url' value=connectorPropertiesUrl)
|
||||
(obj name='search-term' value='name')
|
||||
(obj name='id-property' value='type')
|
||||
(obj name='text-property' value='name')
|
||||
(obj name='selected-property' value='selected')
|
||||
(obj name='initial-value' value=initialValue)
|
||||
(obj name='initial-key' value=initialKey)
|
||||
(obj name='display-all' value=true)
|
||||
)
|
||||
helpText=helpText
|
||||
}}
|
||||
{{/if}}
|
||||
Reference in New Issue
Block a user