ListBoxValueChanged callback doesn't get called when I change value.
Afficher commentaires plus anciens
I want a specific function to get triggered, when I change the Value in a Listbox
my Code:
function DatenListBoxValueChanged(app, event)
fill_table(app)
end
With the debugging functionality "Pause Excecution at Line XX" (==making the line number red) I found out that the Callback doesn't get triggered when I change the value.
How can I fix that?
(I have multiselect enabled if that's relevant)
2 commentaires
Make sure that function is in fact the callback of the listbox:
- In App Designer, Design View, select the listbox
- In the Component Browser in the right side panel, click Callbacks and see what the ValueChangedFcn is

If the ValueChangedFcn is not DatenListBoxValueChanged, then enter or select DatenListBoxValueChanged in the ValueChangedFcn box.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Develop Apps Using App Designer dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

