I cannot retrieve data from a uitable with app designer

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');

 Accepted Answer

Adam Danz
Adam Danz on 12 Apr 2019
Edited: Adam Danz on 17 Apr 2019
It's a logical [1 x n] array describing whether each of your n-columns are editable (true) or not (false).

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Asked:

on 12 Apr 2019

Edited:

on 17 Apr 2019

Community Treasure Hunt

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

Start Hunting!