Error Message in uitable GUI

I have a editable uitable in a GUI. How can I check the user input data, and if the values are negative, display an error message?

답변 (1개)

Adam
Adam 2015년 3월 19일

0 개 추천

There's a CellEditCallback in which you can add whatever code you want in response to someone entering something in a cell of the table.

댓글 수: 2

if any((data(:,1)) < 0)==1
warndlg('Must be greater than zero.','Warning!')
end
Where (data(:,1)) is column 1 of my uitable
I get the error:
Undefined function 'lt' for input arguments of type 'cell'.
Adam
Adam 2015년 3월 19일
Isn't 'data' a cell array from a uitable? In which case you need to apply cell operations or convert to a numerical array if it is pure numbers

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2015년 3월 19일

댓글:

2015년 3월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by