Borrar filtros
Borrar filtros

Uitables and widgets question

2 visualizaciones (últimos 30 días)
James Hendren
James Hendren el 25 de Jun. de 2013
I have 2 questions.
1) Can checkboxes be implemented into the UItable when building a gui.
2) If so, can rows and checkboxes be added dynamically to the UItable.

Respuesta aceptada

Tom
Tom el 25 de Jun. de 2013
Editada: Tom el 25 de Jun. de 2013
1) Yes
2) Yes
you can change the column format of the table at any point, using the ColumnFormat field of the uitable:
T = uitable('Data',{'a',false;'b' true},...
'ColumnFormat',{[] , 'numeric'},...
'ColumnEditable',[false true]);
pause(1)
set(T,'ColumnFormat',{[],'logical'})

Más respuestas (4)

James Hendren
James Hendren el 25 de Jun. de 2013
Is your sample for question 1 or 2?
  1 comentario
Tom
Tom el 25 de Jun. de 2013
Editada: Tom el 25 de Jun. de 2013
2 I suppose, it's not specific to GUIDE - you can run it in the command line or paste it into a script and run it. It shows a table being created, and then the second column being converted from numeric data to logical checkboxes.

Iniciar sesión para comentar.


James Hendren
James Hendren el 25 de Jun. de 2013
I am not getting checkboxes when I run it

James Hendren
James Hendren el 25 de Jun. de 2013
I meant literal checkboxes from the GUIDE program
  14 comentarios
James Hendren
James Hendren el 25 de Jun. de 2013
I have, but there is alot left out from the guide. For instance, I could not insert a checkbox into the table. Is there another source you would suggest?
Tom
Tom el 25 de Jun. de 2013
To do it in GUIDE, you right click on the table, select Table Property Editor, then in the Columns tab there is an option to select what data format each column will take: make it 'logical'.

Iniciar sesión para comentar.


James Hendren
James Hendren el 26 de Jun. de 2013
Also, how could I install another push button "Remove Row" to delete all new created rows. Is there a way to implement add/remove buttons with GUIDE?

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by