There seem to be some issues with combox in v. 2.9.137.
I’m trying to use cabbageSet
on combobox
at initialization.
combobox bounds(20, 24, 160, 30) channel("combo1"), channelType("string")
cabbageSet "combo1", {{ items("one", "two", "three"), value("one") }}
cabbageSet "combo1", {{ colour(0,255,0,255) }}
- When item is set to value(“one”) it always jumps to “three” (also with a mouse).
- Colour and possibly other properties can’t be set.
Am I doing something wrong or is there a bug?
In my case cabbageCreate
might be useful though. This seems to work:
cabbageCreate "combobox", {{bounds(20, 24, 160, 30) channel("combo1") items("one", "two", "three") value("one") colour(0,255,0,255) channelType("string")}}
Btw. a side question: before it was possible to insert a widget via mouse right click, which is not possible any longer. Intentionally?