How to make a DropDown function control the visibility of a spinner in App designer
1 view (last 30 days)
Show older comments
Hi,
I am New to App Designer and i would like to make one item in the DroppDown function to make a spinner visible. Is this possible? What I have tried so far is this:
Value= app.InstrumentDropDown.Value;
if Value==1
app.AntalldypSpinner.Visible='off'
elseif Value==2
app.instrument='D';
app.AntalldypSpinner.Visible='on'
elseif Value==3
app.instrument='D';
app.AntalldypSpinner.Visible='off'
elseif Value==4
app.instrument='R';
app.AntalldypSpinner.Visible='off'
end
but this only make the spinner disappear and it never shows up again. Can someone help me?
0 Comments
Answers (1)
Tushar Upadhyay
on 2 May 2017
The app.InstrumentDropDown.Value might be giving value in "char" instead of numeric. Make sure that the value is numeric. If it is a char then change the If statement as below:
if Value=='1' app.AntalldypSpinner.Visible='off'
If that does not work, then add the debug point in the function and see if it is going into the appropriate conditional statement.
0 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!