tornadofx-controls icon indicating copy to clipboard operation
tornadofx-controls copied to clipboard

[Help|Guide] AutocompletionEvent.AutoCompleted

Open NiranjanShah opened this issue 6 years ago • 5 comments

AutoCompleted event is not fired

tfParent.addEventHandler(AutoCompletionEvent.AUTO_COMPLETED) { println("Coming here") }

        tfParent.addEventFilter(AutoCompletionEvent.AUTO_COMPLETED)
        {
            println("Coming here")
        }

I believe this is the right way to trap the event, if it is correct then the AutoCompleted event of textfield is not getting fired.

Kindly guide in case the way its done is wrong

NiranjanShah avatar Feb 04 '18 15:02 NiranjanShah