How to tell how an uieditfield was exited?
Show older comments
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.
Accepted Answer
More Answers (1)
Bhargavi Maganuru
on 18 Feb 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 Comments
David Aronstein
on 18 Feb 2020
Bhargavi Maganuru
on 19 Feb 2020
HI David,
As of now there is no programmatic way to tell which of the events has triggered the callback.
David Aronstein
on 19 Feb 2020
Categories
Find more on Interactive Control and Callbacks in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!