I cannot retrieve data from a uitable with app designer
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Vincenzo Bianco
le 12 Avr 2019
Modifié(e) : Adam Danz
le 17 Avr 2019
I create a uitable within a figure and the user have to insert data but the table is not editable.
My code is:
f = figure;
table = uitable('Parent', f);
set(table, 'Data', cell(10));
my data= get(table, 'Data');
0 commentaires
Réponse acceptée
Adam Danz
le 12 Avr 2019
Modifié(e) : Adam Danz
le 17 Avr 2019
Check out the "ColumnEditable" property:https://www.mathworks.com/help/matlab/ref/matlab.ui.control.tableappd-properties.html
It's a logical [1 x n] array describing whether each of your n-columns are editable (true) or not (false).
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!