``` select(listOf("1" to "First", "2" t...
# kvision
r
Copy code
select(listOf("1" to "First", "2" to "Second")) {
                emptyOption = true
                selectWidth = 300.px
                onEvent {
                    change = {
                        console.log(self.value)
                    }
                }
            }
a
Thank you! I didn’t realize that existed. Very helpful