uitable with logical cell (checkbox)
3 ビュー (過去 30 日間)
古いコメントを表示
Hi,
How can I know which rows in a uitable with logical cell (checkbox) were selected (upon clicking a button)?
Thanks.
0 件のコメント
採用された回答
Walter Roberson
2013 年 12 月 10 日
get() the Data property of the table and examine the respective cells.
6 件のコメント
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 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!