uitable with logical cell (checkbox)

3 visualizzazioni (ultimi 30 giorni)
hu
hu il 10 Dic 2013
Commentato: Walter Roberson il 11 Dic 2013
Hi,
How can I know which rows in a uitable with logical cell (checkbox) were selected (upon clicking a button)?
Thanks.

Risposta accettata

Walter Roberson
Walter Roberson il 10 Dic 2013
get() the Data property of the table and examine the respective cells.
  6 Commenti
hu
hu il 11 Dic 2013
I still not getting the row numbers (I run you code in a GUI). Can you please upload a full example. Thanks
Walter Roberson
Walter Roberson il 11 Dic 2013
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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Elementary Math in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by