I am making an app on app designer, I want the user to enter data in tabular form, where the no. of rows can be input by user and then he enters data in 2 columns
조회 수: 2 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/323179/image.png)
댓글 수: 0
답변 (1개)
Urmila Rajpurohith
2020년 8월 26일
You can use the below call back for "Edit field" to get the number of rows based on user input
function EditFieldValueChanged(app, event)
n = app.EditField.Value;
n =str2double(n);
dt = zeros(n,'double');
app.UITable.Data= dt;
end
Hope this helps!
댓글 수: 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!