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

2 次查看(过去 30 天)
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.

采纳的回答

Sindhu Priya
Sindhu Priya 2017-4-17
编辑:Sindhu Priya 2017-4-17
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

更多回答(0 个)

类别

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