Why do the popupmenus/ listbox disappear if i use pushbutton callback ?

2 views (last 30 days)
I have GUI, which has few pushbuttons that loads some data into popupmenus and listbox When I click on pushbutton, to reset the content to empty, it makes the popupmenu /listbox disappear. why does it happen? how can I avoid it ?
  2 Comments
Walter Roberson
Walter Roberson on 22 Jul 2018
Please do not close questions that have an answer.
Your question is not unclear: you are just asking to do something that cannot be done in MATLAB.
Image Analyst
Image Analyst on 22 Jul 2018
If you're got your answer, and are all done, then you can "Accept" the answer (to give the answerer reputation points and let everyone know it's solved) rather than Close the question.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 22 Jul 2018
When you set the String property of the popup or listbox to empty, you need to set the Value property to [] at the same time, or else the Value will be greater than the number of strings and it will consider that an error and refuse to draw the box.
  2 Comments
VBBV
VBBV on 22 Jul 2018
Edited: VBBV on 22 Jul 2018
when I do that I get a warning message Warning: 'popupmenu' control requires a scalar Value. Control will not be rendered until all of its parameter values are valid Still the popupmenus disappear.
Walter Roberson
Walter Roberson on 22 Jul 2018
Basically, you cannot have an empty popup. You can have an empty listbox though.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps 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!