Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Combobox defaultselectedItem not work

Posted on by 24

Hi Evereybody,

for a simple question, I'm loosing so much time....

 

I have a set a datetime value for appointments, so I have add in my form a DatePicker and two combobox (one for hours and 1 for minutes)

 

The cbxHours.Items is: ["";"08";"09";"10";"11";"12";"13";"14";"15";"16";"17";"18";"19";"20"]

The cbxMinutes.Items is: ["";"00";"15";"30";"45"]

 

 

I want that if i select a record whit an appointment, in these box I have to display the Appointment Hour and the Appointment Minute

 

So, on the OnVisible Event on this form I have this code:

 

Reset(cbxHours);;
Reset(cbxMinutes);;
If(selectedItem.Stato.Value = "Appuntamento";
Set(vAppointmentDate; Text(selectedItem.Appuntamento; "[$-it-IT]dd/mm/yyyy"));;
UpdateContext({vAppointmentHour:Text(Hour(selectedItem.Appuntamento))});;
UpdateContext({vAppointmentMinutes:Text(Minute(selectedItem.Appuntamento))});;
;
UpdateContext({vAppointmentDate:Blank()});;
UpdateContext({vAppointmentHour:""});;
UpdateContext({vAppointmentMinutes:""})
)

 

 

But If i add the vAppointmentMinutes as cbxMinutes.DefaultSelectedItems I have an error.

What is wrong?

 

Thanks

Marco

 

 

 

 

Categories:
  • Verified answer
    Re: Combobox defaultselectedItem not work

    Hi,

     

    The defaultSelectedItems for comboboxes has to be an array, so you could update with either:

    UpdateContext({vAppointmentMinutes:[""]})

     

    or in the  cbxMinutes.DefaultSelectedItems have

    [vAppointmentMinutes]

     

    Hope this helps,

    Alex

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

October 2024 Newsletter…

October 2024 Community Newsletter…

Community Update Oct 28…

Power Platform Community Update…

Tuesday Tip #4 How to Conntact Support…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 142,733

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 63,750

Leaderboard