Borrar filtros
Borrar filtros

Error Message in uitable GUI

4 visualizaciones (últimos 30 días)
laurie
laurie el 19 de Mzo. de 2015
Comentada: Adam el 19 de Mzo. de 2015
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?

Respuestas (1)

Adam
Adam el 19 de Mzo. de 2015
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 comentarios
laurie
laurie el 19 de Mzo. de 2015
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 el 19 de Mzo. de 2015
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

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by