How to disable Edit Field (Text) in App Designer?

13 views (last 30 days)
I would like to know how to set "Edit Field (Text)" disable to edit in App Designer. I want to change the editable status able/disable via Switch On/Off.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 16 Sep 2020
Edited: MathWorks Support Team on 16 Sep 2020
Here is an example to show how to control Editable about "Edit Field (Text)".
function SwitchValueChanged(app, event)
value = app.Switch.Value;
if ( strcmpi(value,'On') )
app.VelocityEditField.Enable = 'On'
app.TemperatureEditField.Editable = 'On'
% app.LoadEditField.Editable = 'On'
else
app.VelocityEditField.Enable = 'Off'
*app.TemperatureEditField.Editable = 'Off'*
% app.LoadEditField.Editable = 'Off'
end
end
This is the captured image to show the result of the above example. It is set so that editing is not possible at Temperature where Editable is off.

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!