Wanted features for UITABLE and UITREE
조회 수: 9 (최근 30일)
이전 댓글 표시
Currently the power of uitable and uitree is very limited.
Which features are missing to improve the usability of your GUIs?
댓글 수: 0
채택된 답변
Matt Kindig
2013년 2월 5일
It would be nice to be able to update the contents of a single uitable cell without "flicker". As it stands now, it is easy to modify the 'String' property of a uicontrol, call a drawnow(), and have it immediately update without flicker. To do the same in a uitable, you have to update the entire 'Data' cell array for all cells, causing flicker on the refresh. Also, when this occurs, the uitable scrolls back to its top-most position, which is confusing and distracting for the user.
추가 답변 (6개)
Jette
2012년 3월 1일
I'd like to have an additional Property 'RowEditable' similar to the property 'ColumnEditable'. Both properties should work at the same time such that the user is only allowed to change certain submatrices of the entire table.
Other things I'd like to have:
- selection of entire rows and columns by clicking on the header
- the possibility to change the background color of single cells
- a context menu for each cell or at least for each column
Concerning uitree: This function is not even a supported function. It would be extremely nice to have an "official" uitree function in MATLAB.
Tom
2013년 2월 5일
Having a button up/ button down callback, or some way of determining whether the user is selecting single or multiple cells would be really useful.
댓글 수: 0
Walter Roberson
2011년 12월 20일
uicontrol('Style','edit') and uitable cells should support a "PICTURE" input validation field; the field could be a string containing a % format, or a string containing a regex, or the handle of a routine. The validation would be "live", as characters are typed, with user notification (e.g. a beep, with provision made for visual notification for the deaf) as soon as they enter the wrong character.
drag-and-drop. Extended cut-and-paste (e.g., blocks of table)
Ability to find out which uitable cells are visible, and ability to set the scrollbars so that a particular part is visible.
Embedded 'vi' editor mode.
댓글 수: 0
khaled DAWOUD
2012년 8월 24일
puting the cursor in specific cell of uitable in the matlab is not provided.This is really important of disp and controling the data in uitable.
댓글 수: 1
Jette
2012년 12월 4일
I agree that it is very important to select a cell programmatically. I just came across this issue and can't believe that this is not possible.
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!