How can the column names of a uitable be defined as editable?

37 vues (au cours des 30 derniers jours)
Fabian Gock
Fabian Gock le 25 Sep 2018
Modifié(e) : Adam Danz le 25 Sep 2018
I'm working on a GUI with AppDesigner and use a table to display calculated Data. With each calculation, the table gets a new column. I want the name of this column to be editable by the user so he can name the set of results as he pleases.
Thanks in advance for any suggestions. -Fabian

Réponse acceptée

Adam Danz
Adam Danz le 25 Sep 2018
Modifié(e) : Adam Danz le 25 Sep 2018
The only way I know how to change columns names within a table is by doing it within the code (see this link )
set(t, 'ColumnName', {'MT', 'MSTd', 'VIP', 'LIP'});
which can't be done by the user directly using the GUI. Instead, you could create edit boxes above or on top of the uitable column headers where the user can edit them directly. Each of them could have a callback function that executes the set() command above so the ColumnName property is edited.
Another option would be to use the first row of the uitable as the header row and allow the columns to be editable by the user (which could result in other unintended consequences).

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by