How to tell how an uieditfield was exited?
Afficher commentaires plus anciens
I have a uieditfield field for text input.
There seem to be at least three ways to indicate to the app that we are finished entering information into this field. The ValueChangedFcn is called when (1) the user presses Enter, (2) the user presses Tab, or (3) the user changes from the app to another program running on the computer.
Is there a way to figure out which of these three events occured? In particular, I'd like to catch (3) and ignore processing the current value of the field for the moment.
Réponse acceptée
Plus de réponses (1)
Bhargavi Maganuru
le 18 Fév 2020
After typing in the edit field, if you click anywhere outside the edit field, editFieldValueChanged callback will be triggered.
Add the following line of code in the callback function.
disp("exited from editfield");
So whenever this message is displayed, user has clicked outside the app.
Hope this helps!
3 commentaires
David Aronstein
le 18 Fév 2020
Bhargavi Maganuru
le 19 Fév 2020
HI David,
As of now there is no programmatic way to tell which of the events has triggered the callback.
David Aronstein
le 19 Fév 2020
Catégories
En savoir plus sur Data Type Identification dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!