gui uitable choice list linkage
3 views (last 30 days)
Show older comments
How can I write uitable like this?
For example, when the left field is 2, the menu for 5 and 6 can be displayed on the right.
When the left field is selected 1, the menu for 3 and 4 can be displayed on the right.
Different field values are required to correspond to values of different fields.
0 Comments
Answers (1)
Walter Roberson
on 17 Sep 2019
This cannot be done with a uitable for traditional figures.
uitable for traditional figures implement menus by setting the entry for ColumnFormat to be a cell array of character vectors. Then the individual cell entry for the contents must be a scalar integer that is the index of into the cell array of character vectors. Because it is the same reference cell array each time, it is not possible to have one row activate one menu and a different row activate a different menu.
Perhaps you could get somewhere with the Java level described by Yair in undocumentedmatlab.com
0 Comments
See Also
Categories
Find more on Desktop in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!