Hi Friends 馃憢,
Welcome To Infinitbility! 鉂わ笍
Create a dropdown in node-red To create dropdown ( select ) in node-red, use node red typedInput() function it will create dropdown list based on provided options by you.infinitbility.github.ioinfinitbility.github.io
<label for="node-input-domain"><i class="fa fa-tag"></i>Domain</label> <input type="text" id="node-input-domain" /><br/><br/> let options = [ { value: "infinitbility.github.io", label: "infinitbility.github.io"}, { value: "aguidehub.com", label: "aguidehub.com"}, { value: "sortoutcode.com", label: "sortoutcode.com"}, ]; $("#node-input-domain").typedInput({type:"domain", types:[{ value: "domain", options:options }]}) Create a dropdown in node-red with multiple select options To create multiple values select dropdown in node-red, pass the multiple: true option in node-red typedInput API it will enable multiple selections of dropdown value....