App Designer : Text field making visible and invisible when select and re-select same option from drop down menu
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Saurabh Chaudhary
am 13 Sep. 2020
Bearbeitet: Mario Malic
am 13 Sep. 2020
I am trying to make a text field visble when I select an option form the drop down and when I re-select that option, I want to make that text field hide. Please suggest me how to do this using drop dwon.
0 Kommentare
Akzeptierte Antwort
Mario Malic
am 13 Sep. 2020
Bearbeitet: Mario Malic
am 13 Sep. 2020
You can create a property called
Last_Selection = '';
In the DropDownMenu callback
function DropDownValueChanged(app,event)
if isempty(app.Last_Selection)
app.Last_Selection = app.DropDownMenu.Value % Initialises Last_Selection on first callback
else
if isequal(app.Last_Selection, app.DropDownMenu.Value)
% Hide something
% I am not sure how it goes with hiding/removing dropdown values
% First you have to assign to some other dropdown value and then remove it
% if you don't want errors
% ind = find (app.DropDownMenu.Value == app.DropDownMenu.Items); % get index of data to be removed
% app.DropDownMenu.Value = change_to_other_value
% app.DropDownMenu.Items{1,ind} = ''; % Test if it actually works
else
app.Last_Selection = app.DropDownMenu.Value
end
end
end
The question is, does the callback gets executed if the DropDownMenu.Value stays the same?
It might be more intuitive to the user what to do to remove the dropdown value, by adding the button instead.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!