Working with data in table
4 ビュー (過去 30 日間)
古いコメントを表示
I want to insert data in a particular collumn in table in app designer in the form 1,2 and not as 12 for certain cells. How do i do it ? Can anyone help?
Thanks
0 件のコメント
採用された回答
Ameer Hamza
2020 年 6 月 5 日
You can use data property to change data of a uitable object
app.UITable.Data{2,3} = '1,2';
It will set 2nd row of 3rd column to '1,2'.
2 件のコメント
Ameer Hamza
2020 年 6 月 7 日
In the app designer, you can set the column of the uitable to be editable in the component browser panel. It will allow the user to change the cells of the table directly.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!