Hi everyone! I have a question concerning textfiel...
# tornadofx
m
Hi everyone! I have a question concerning textfield validation
Copy code
textfield(sometextProperty) {
    filterInput { it.controlNewText.isNotEmpty() }
}
I'm trying to prohibit entering empty text, but when I use this filter, it doesn't allow me to change text at all. What am I doing wrong?