uitable with logical cell (checkbox)

Hi,
How can I know which rows in a uitable with logical cell (checkbox) were selected (upon clicking a button)?
Thanks.

 Réponse acceptée

Walter Roberson
Walter Roberson le 10 Déc 2013

0 votes

get() the Data property of the table and examine the respective cells.

6 commentaires

hu
hu le 10 Déc 2013
Modifié(e) : hu le 10 Déc 2013
and how do I do it? Thanks
data = get(HandleOfUitable, 'Data');
logical_vec = horzcat(data{:,AppropriateColumnNumber});
disp('rows that were set were:')
find(logical_vec)
hu
hu le 10 Déc 2013
Modifié(e) : hu le 10 Déc 2013
Thanks a lot. It only give me how much checkboxes were clicked in a consecutive string (e.g.,1 2 3) but not the actual row number, can it be modified to show the row numbers?
Walter Roberson
Walter Roberson le 10 Déc 2013
It works in my test.
hu
hu le 11 Déc 2013
I still not getting the row numbers (I run you code in a GUI). Can you please upload a full example. Thanks
foo = uitable('Data', {false;true;true;false;false}, 'ColumnEdit', true);
Now click on the last entry. Then
data = get(foo, 'Data');
logical_vec = horzcat(data{:});
find(logical_vec)
You should now see that 1 and 4 are not in the list.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by