Can not save an updated uitable with editable column
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Lluis Roca
el 9 de Abr. de 2020
Editada: Ameer Hamza
el 9 de Abr. de 2020
I am using 2019b and I have an App Designer uitable with editable column. While I change a value it changes on the screen/GUI but not when I save it via a button. How can I solve it?
function saveDataButtonPushed(app, event)
global myData;
filter = {'*.csv'};
[file, path] = uiputfile(filter);
fullFileName = [path file];
writecell(myData,fullFileName,'Delimiter',';')
end
0 comentarios
Respuesta aceptada
Ameer Hamza
el 9 de Abr. de 2020
Editada: Ameer Hamza
el 9 de Abr. de 2020
I am not sure why you are defining a global variable. In App designer, you should directly use the properties of the app object to access data of uitable. See the attached file for an example of how to save csv file from uitable.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer 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!