필터 지우기
필터 지우기

AppDesigner/UICalendar Error - "There is no String Property on the EditField class"

조회 수: 3 (최근 30일)
Matt
Matt 2017년 6월 6일
댓글: Matt 2017년 6월 13일
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!

답변 (1개)

Arnav Mendiratta
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:
1. Have a different UI altogether to select the date which would look somewhat like this .
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.
  댓글 수: 1
Matt
Matt 2017년 6월 13일
Thanks for the response! I eventually also found that it was not supported via App Designer, but thank you very much for the workaround!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by