Can I add unknown number of check boxes in live editor?

2 次查看(过去 30 天)
Hi,
I have a table and one of the vatiables in the table is categorical. I would like to add a check box per each category in live editor. However, I do not know how many categories are in the variable until I load it from a file. The file is being continuously updated by someone else, not changing columns but adding more rows which could have new categories. Is it possible to add check boxes programatically in live editor?
I am currently using R2021b. If there is no solution, can R2022a help? I read a new feature, "Live Editor: Develop your own Live Editor tasks", but am not sure if it is a (only) solution.
Thank you for your help in advance.

回答(1 个)

Simon Chan
Simon Chan 2022-3-30
Suppose your data is a cell array, update your uitable by the following:
uit.Data = [data,num2cell(false(size(data,1),1))]; % or you may use true instead of false
In case all your data are numeric and in a form of matrix, you can update the uitable via:
uit.Data=[num2cell(data),num2cell(false(size(data,1),1))]
  2 个评论
Harry Cho
Harry Cho 2022-3-30
编辑:Harry Cho 2022-3-30
Thank you for the reply.
I have no experience in UI and couldn't understand the proposed solution. How does it work in live editor? I can manually insert a check box but would like to do it programatically as I have to add unknown number of check boxes.
Simon Chan
Simon Chan 2022-3-30
May be I misunderstand your question. I am referring to the checkbox inside the uitable. I think it is much more easy because the number of checkboxes depends on the number of rows from your data.
See this documentation: uitable

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by