필터 지우기
필터 지우기

update uitable with pushbutton

조회 수: 1 (최근 30일)
Amir Hamzah UTeM
Amir Hamzah UTeM 2011년 6월 26일
hi, i want to update my uitable by every pushbutton click in GUIDE.For examples, i have (1x3) data X=[1 2 3] and every pushbutton click, it will continue add for the next row in that uitable. My problem is, when i click, it will clear the previous data that add in uitable. Here my code.
at the openingfcn,
handles.n=1;
handles.x=cell(1,1);
% Update handles structure
guidata(hObject, handles);
at the pushbutton
n=handles.n
x=handles.x;
data(n,1)=1;
data(n,2)=2;
data(n,3)=3
x{n,1}=data
handles.n=n+1;
handles.x=x;
% Update handles structure
guidata(hObject, handles);
set(handles.uitable1,'Data',x{n,1})
can anyone help me?

답변 (1개)

Walter Roberson
Walter Roberson 2011년 6월 26일
You have to rewrite the entire cell array when you set() the 'Data' property. For example,
set(handles.uitable1,'Data',x)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by