Empty windows in EditFields of app.designer?
Show older comments
I'm designing an app in which you select some input variables and its values, and after clicking the button calculate, the apps calculates and shows to the some physical values that has calcuates. (e.g: ypu enter as inputs m,g,h,a (and its values) and after clicking "calculate" it shows you F (force) and ME(mechanical energy) and their values.
So, here is are the dropemenus where the user can select the inputs he wants to enter and at the right, their values.

The issue here is that, by default, those white EditField(Numeric) windows (on the right), has the 0 value on it, as you can see above. The issue is that I would like those windows to be empty until the user enters one value. Is this possible? I have tried clicking on each windows's Inspector panel as you can see below and changing its value 0 by just deleting it

But appears me this error.

So. It's possible to have those windows empty until the user enters a value? Or is any alternative way of achieving that?
Thank you very much
Accepted Answer
More Answers (1)
Juan Andrés Martin
on 3 Aug 2023
1 vote
Actually, you can: you just need to set the "AllowEmpty" property to "On" and then set de "Value" property to "[]"
Example:
% Create MinTipThickness2Input
app.MinTipThickness2Input = uieditfield(app.GridGearInputs, 'numeric');
app.MinTipThickness2Input.Tag = 'MinTipThickness2Input';
app.MinTipThickness2Input.AllowEmpty = 'On';
app.MinTipThickness2Input.Value = [];
Categories
Find more on Develop Apps Using App Designer 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!