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.

 採用された回答

Walter Roberson
Walter Roberson 2013 年 12 月 10 日

0 投票

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

6 件のコメント

hu
hu 2013 年 12 月 10 日
編集済み: hu 2013 年 12 月 10 日
and how do I do it? Thanks
Walter Roberson
Walter Roberson 2013 年 12 月 10 日
data = get(HandleOfUitable, 'Data');
logical_vec = horzcat(data{:,AppropriateColumnNumber});
disp('rows that were set were:')
find(logical_vec)
hu
hu 2013 年 12 月 10 日
編集済み: hu 2013 年 12 月 10 日
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 2013 年 12 月 10 日
It works in my test.
hu
hu 2013 年 12 月 11 日
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 2013 年 12 月 11 日
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.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

質問済み:

hu
2013 年 12 月 10 日

コメント済み:

2013 年 12 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by