Borrar filtros
Borrar filtros

How to store data values from uitable

4 visualizaciones (últimos 30 días)
James Hendren
James Hendren el 16 de Ag. de 2013
How would I go about storing data values typed into a uitable as globals or otherwise?

Respuestas (1)

Walter Roberson
Walter Roberson el 16 de Ag. de 2013
DataCell = get(UitableHandle, 'Data');
global_variable_1 = DataCell{5,7}; %for example
  8 comentarios
James Hendren
James Hendren el 16 de Ag. de 2013
so how do I make it to where the user can edit the value?
Walter Roberson
Walter Roberson el 16 de Ag. de 2013
You should investigate the CellEditCallback property; see http://www.mathworks.com/help/matlab/ref/uitableproperties.html#brgcv4s
You would set it to the handle of a function; the function would execute when a cell is edited. In the function you would change the global variable.
You should consider alternatives.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by