does anyone know how we enter data manually into "uitable"?

조회 수: 4 (최근 30일)
Shynta Nanda
Shynta Nanda 2019년 12월 29일
답변: Image Analyst 2019년 12월 29일
pertanyaan.png

채택된 답변

Image Analyst
Image Analyst 2019년 12월 29일
What do you mean by manually?
  1. By the user directly typing into the cells of the table, or
  2. By programmatically sending some data to the table?
If (1), just run the app by clicking on the green run triangle and have the user click inside a cell and start typing.
if (2), just do this
handles.uitable1.Data = yourMatrix; % Or your cell array.

추가 답변 (1개)

Ajay Kumar
Ajay Kumar 2019년 12월 29일
One option could be writing callback to button(Enter data) wherein we use inputdlg to get the user inputs for all values and assigning it to uitable there itself.
doc inputdlg

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by