Popupmenu in the uitable
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a popupmenu in the uitable: set(handles.uitable1, 'ColumnFormat', {{'A' 'R'}) And I want to do, if I choose 'A', than do something, for example, 2+2, else 2-2. How to format function, that it does, what I want?
0 Commenti
Risposta accettata
Oleg Komarov
il 4 Mar 2011
You should use CellEditCallback:
set(handles.uitable1, 'ColumnFormat', {'A' 'R'},'CellEditCallback',@myFun)
function myfun(varargin)
% Check for the value
% Do stuff
end
Oleg
5 Commenti
Oleg Komarov
il 9 Mar 2011
There's is not such a thing as THE ERROR. Post the complete error msg you get.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!