Filter löschen
Filter löschen

How can I add information to a uitable by clicking a checkbox and take it out of the table by unclicking it?

2 Ansichten (letzte 30 Tage)
I am trying to add values that are in a cell array (ex. {Category,Thing}) into a uitable by clicking the checkbox and take it out of the uitable by unclicking. I can't seem to figure it out.

Akzeptierte Antwort

Sindhu Priya
Sindhu Priya am 17 Apr. 2017
Bearbeitet: Sindhu Priya am 17 Apr. 2017
Hi Matthew,
Please find the following code snippet, this creates a table and checkbox.
table = uitable;
uicontrol('Style','checkbox','String','Check Me','Value',0,'Position',[300 300 130 200],'Callback',{@checkBoxCallback,table,'Category','Thing'});
And the checkBoxCallback adds the row to the UI table when the check box is checked and removes the same when unchecked.
The checkBoxCallback is as follows,
function checkBoxCallback(hObject,eventData,table,category,category_value)
value = get(hObject,'Value');
if value==1
table.Data={category,category_value};
else
table.Data={'',''};
end
end
Hope this answers your query.
Regards,
Sindhu

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by