app designer does not get the value from edit field in panel

12 visualizaciones (últimos 30 días)
farzad
farzad el 4 de Sept. de 2020
Respondida: Mario Malic el 4 de Sept. de 2020
Hi All
I have an edit field that is inside a panel. It seems that when I call the value with app.variable , it can not be read. How to fix? am I using the wrong method ?
% Value changed function: ColumnEditField
function ColumnEditFieldValueChanged(app, event)
app.col = app.ColumnEditField.Value;
end
  3 comentarios
farzad
farzad el 4 de Sept. de 2020
It says it doesn't know the variable.
Xavier
Xavier el 4 de Sept. de 2020
Have you verified that the edit field is still named "ColumnEditField"? You can check by using the Component Browser pane in the design view
Alternatively have you created the 'col' property within the app?

Iniciar sesión para comentar.

Respuestas (1)

Mario Malic
Mario Malic el 4 de Sept. de 2020
It's correct what you've written and what Xavier suggested. You need to create a property col.
If col is a number, use col = [];
If col is a char, use col = '';

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