The select control allows the user to select from a drop down list.
Select(choices=[], placeholder="")
from mirmod.controls import Textbox @wob.receiver("value", "input", control=Select(placeholder="a", choices=["a", "b", "c"])) def receive_input(self, i): self.values = i