Problem with data of uitable
显示 更早的评论
Hello I am working in a interface where a button displays a figure which contains a table with some data, I created the table with this code
t = uitable('Position',[20 50 260 100],'Data', d,...
'ColumnName', columnname,...
'ColumnFormat', columnformat,...
'ColumnEditable', [false true true],...
'RowName',[],'CellEditCallBack',@editTable_Callback,'Tag','Tabla1','HandleVisibility','Callback');
But when I try to retrieve the data as
get(handles.Tabla1,'Data')
it shows me an error
Reference to non-existent field 'Tabla1'.
Also if I look at handles it does not appear the handles of the table I created
I appreciate your assistance
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Update figure-Based Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!