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

2 visualizaciones (últimos 30 días)
Harry Cho
Harry Cho el 30 de Mzo. de 2022
Editada: Harry Cho el 30 de Mzo. de 2022
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.

Respuestas (1)

Simon Chan
Simon Chan el 30 de Mzo. de 2022
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 comentarios
Harry Cho
Harry Cho el 30 de Mzo. de 2022
Editada: Harry Cho el 30 de Mzo. de 2022
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 el 30 de Mzo. de 2022
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

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by