OH3 Widget - F7 card with radio button or combobox

Hello all,

I would like to add in a custom widget a radio button or a combobox that will allow the user to select one value from several predefined values.

I have no idea how to do this, does any of you have any suggestions?

Thank you for your support,

Ion

I used something like this:

    - component: oh-button
      config:
        text: PARTITION
        tooltip-trigger: hover
        tooltip: '=!(props.tooltipEnable) ? false : "Select Partition Required to view (requires activation)"'
        textColor: white
        action: options
        actionOptions: Partition1=1,Partition2=2,Partition3=3,Partition4=4
        actionItem: =props.partitionSelection

Thank you for your suggestion, I will give it a try.