- Check wether the component is Editable and Enabled
- There is a gap between the uicontrol 'editfield' and the new 'uieditfield'. You could use the 'UserData' property that is available on every component. So if you had this GUIDE code:
Edit field text does not work after migration from Guide to App designer
3 次查看(过去 30 天)
显示 更早的评论
I migrated an application from guide to app designer and it seems that the editable text cannot be edited in the migrated application.
If I add a new editable edit field it does not allow to be edited in the running application.
0 个评论
回答(1 个)
Monisha Nalluru
2021-4-14
There could be two reasons to edit text component not editable:
set(handles.edit1, 'Value', datenum(get(handles.edit1, 'String')));
This should be converted to
app.edit1.UserData = datenum(app.edit1.Value);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!