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

56 Ansichten (letzte 30 Tage)
Fabian Gock
Fabian Gock am 25 Sep. 2018
Bearbeitet: Adam Danz am 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

Akzeptierte Antwort

Adam Danz
Adam Danz am 25 Sep. 2018
Bearbeitet: Adam Danz am 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).

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by