Hi,
In my customview for inputs or textareas, I though I can add keydown and keypress events by uncommenting event definitions below :
and add those lines in DesignerCreateView sub:
But It's not working. The input and textearea are blocking inputs.
In my customview for inputs or textareas, I though I can add keydown and keypress events by uncommenting event definitions below :
B4X:
'#Event: Keydown (event As BANanoEvent)
'#Event: KeyPress (event As BANanoEvent)
'#Event: KeyUp (event As BANanoEvent)
and add those lines in DesignerCreateView sub:
B4X:
mElement.HandleEvents("keypress", Me, "_keypress")
mElement.HandleEvents("keydown", Me, "_keydown")
mElement.HandleEvents("keyup", Me, "_keyup")
But It's not working. The input and textearea are blocking inputs.