How can I create rows in UITable APP Designer with categoricals and have the user add rows as necessary?
조회 수: 8 (최근 30일)
이전 댓글 표시
I am developing an app where the user should be able to select from a dropdown within a table and also add rows to the table as more data is required. The user will select if the data is a force, moment, material property, etc. from a dropdown then input the value (editable entry). So far I have been able to create the table but cannot seem to input rows with the correct data types and dynamically add/remove rows.
댓글 수: 0
답변 (1개)
Nikhilesh
2022년 12월 27일
You can create an editable column and use 'categorical' function to add dropdown list as per your requirement.
Kindly follow this MATLAB answer for a similar example where a dropdown is created using 'categorical' function.
For the second part you can create correcsponding edit fields from the component library and append the data to the table.
function UpdateButtonPushed(app, event)
app.Data=app.UITable.Data;
app.Data=[app.Data;{app.PropertyEditField.Value,app.timeEditField.Value,app.DropDown.Value,1,1}]
app.UITable.Data=app.Data;
app.UITable.ColumnEditable=true;
end
댓글 수: 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!