Evening All,
I have the following preference in a smartApp I am working on:
section("Schedule"){
input "daysOfWeek",
"enum",
title:"On these days...",
multiple:true,
metadata: [
values: [
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday'
]
]
However in the IDE the input appears as a select box that only allows a single selection. Have any of you run into this issue?