How do I add a Table in App Designer?
    조회 수: 13 (최근 30일)
  
       이전 댓글 표시
    
With due respect, the instructions for App Designer are at best counter-intuitive and hermetic.  For example, how to create a Table with 3 columns and 3 rows (besides the row of column headings), name columns AND rows, and populate the cells with Default values.  Make these cell data entries editable by the user when running the app.  The app sould take these Table data (and other data from the Slider, Knob, etc.), run a code that generates a plot. 
I am stuck in trying to add Row Names.  The User Community advises I need to add Table data first.  But there seems to be no place in Design View to add such data!
댓글 수: 11
  Adam Danz
    
      
 2018년 11월 20일
				If you share that snippet of code I might be able to help. Also, I'll move the response to the 'answers' section so others may find it useful in the future. 
  ibenitoseb
      
 2020년 3월 10일
				Here is a tutorial on adding rows and columns to tables in app designer:
채택된 답변
  Adam Danz
    
      
 2018년 11월 20일
        
      편집: Adam Danz
    
      
 2018년 11월 20일
  
      To add data to a UItable in App Designer, use the startupFcn() after creating the table in the UI.  
- From the App Designer in design mode, right click anywhere on your app background, hover your mouse over 'callbacks', and add a startupFcn callback.
- Go to Code View and you'll see the startupFcn. Add your data to your table there. Refer to the documentation below to change other properties of the table.
app.UITable.Data = {1 2 3 4};
- Here is a list of all UItable properties available in App Designer.
- Here is a demo of changing those properties within the code.
- Examples of table array data stored in UITables in App Designer (2018a or later).
댓글 수: 5
  Adam Danz
    
      
 2023년 5월 9일
				In the link, see the image in the first step.  You must select your app in the component browser.
추가 답변 (2개)
  Paul Macey
 2020년 6월 17일
        
      편집: Paul Macey
 2020년 6월 17일
  
      Should really have a way to initalize in properties with at least one empty row.....
Here's what I did in the app startupFcn
app.ColorsUITable.Data = cell(1,length(app.ColorsUITable.ColumnName));
댓글 수: 1
  Adam Danz
    
      
 2020년 6월 18일
				That is the way to initialize a table with 1 empty row.  
For some data types you can use <missing> 
  Eric Sargent
    
 2020년 12월 9일
        You can edit the RowName, ColumnName and ColumnEditable Properties of a UITable from the Property Inspector of App Designer.  
 
  You cannot add Data to a UITable from the Design View of App Designer, you will need to add the data in a StartupFcn (or other callback).  For example
function startupFcn(app)
    app.UITable.Data = rand(2,4);
end
Will result in:

댓글 수: 2
  Kristina Francke
 2023년 2월 1일
				
      편집: Kristina Francke
 2023년 2월 1일
  
			what if i want to add a value in Column 1 row Two only?
참고 항목
카테고리
				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!










