AppDesigner/UICalendar Error - "There is no String Property on the EditField class"
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I'm using the app designer to build an application that needs a date from the user, can someone please explain what I am missing to have the date selected output to a Edit Field (Text). My simple button that calls the calendar has this code:
uicalendar('InitDate',datetime(2017,5,1),'DestinationUI', app.WindowStartDateEditField);
Any help would be greatly appreciated!
0 件のコメント
回答 (1 件)
Arnav Mendiratta
2017 年 6 月 13 日
As the documentation mentions, uicalendar should be used with uicontrol type objects. Currently, having uicontrol object within App Designer is not supported.
The reason you get this error is because "uicalendar" expects to populate the 'String' Property of a "uicontrol" object. However, your app.WindowStartDateEditField is App Designer's Edit Field object. This object uses app.WindowStartDateEditField.Value to populate the typed text and does not have any property like app.WindowStartDateEditField.String.
You may use a workaround though:
2. Within your app, create a button "Select Date" which will launch this UI.
3. Have this UI pass the string value to app.WindowStartDateEditField.Value.
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!