Second time open of timepicker, screen

Hallo,

when I open up the sftimepicker for the second time the screen becomes gray out and the picker doesn't show up and the app becomes  not more clickable or I can't do any interactions

Open for the first time:

Screenshot 2025-03-19 161014.png


Open the same control for the second time:

Screenshot 2025-03-19 161055.png

XAML:

  <HorizontalStackLayout Grid.Row="8" Grid.Column="1">

      <buttons:SfButton

          Background="Transparent"

          BackgroundColor="Transparent"

          Command="{Binding ClickUpdateSectionTimeSundayCommand}"

          CornerRadius="4"

          FontAttributes="Bold"

          FontSize="14"

          HeightRequest="30"

          IsEnabled="{Binding Source={x:Reference Sunday}, Path=IsChecked}"

          Stroke="Black"

          StrokeThickness="1"

          Text="{Binding SelectedSectionTimeSunday, StringFormat='{0}'}"

          TextColor="Black"

          VerticalOptions="Fill"

          WidthRequest="110" />


      <picker:SfTimePicker

          x:Name="Picker_Sunday"

          Format="HH_mm"

          IsOpen="{Binding SectionTimePickerOpenSunday, Mode=TwoWay}"

          Mode="Dialog"

          SelectedTime="{Binding SelectedSectionTimeSunday, Mode=TwoWay}">



          <!--<picker:SfTimePicker.FooterView>

              <picker:PickerFooterView

                  Height="40"

                  CancelButtonText="Exit"

                  OkButtonText="Save" />

          </picker:SfTimePicker.FooterView>-->


          <picker:SfTimePicker.HeaderView>

              <picker:PickerHeaderView Height="40" Text="Override Time" />

          </picker:SfTimePicker.HeaderView>


      </picker:SfTimePicker>


  </HorizontalStackLayout>


Viewmodel:


  [ObservableProperty] private bool sectionTimePickerOpenSunday = false;

  [ObservableProperty] private TimeSpan selectedSectionTimeSunday;


  [RelayCommand]

  private void ClickUpdateSectionTimeSunday()

  {

      SectionTimePickerOpenSunday = true;

  }


Thank you very much for any help,

Markus


8 Replies

EH Elijah Hilliker March 20, 2025 12:43 PM UTC

I have the same thing happening with sfPopup, works fine on first open, second time just the blurred background. Syncfusion package is the latest and running on iOS 18.1 and 18.2



TG Tamilarasan Gunasekaran Syncfusion Team March 20, 2025 01:36 PM UTC

Hi Markus,

Based on the provided details, we have reviewed your query regarding when open up the SfTimePicker for the second time the screen becomes gray out and the picker doesn't show up.

We reviewed the provided code snippet but were unable to reproduce the reported issue. The control was tested on NavigationPage and TabViews, functioning as expected on Windows, Android, iOS, and MacCatalyst platforms.

To assist you further, please share the platform and device details where the issue occurs. Additionally, review the attached sample. If the issue persists, kindly update the sample to replicate the problem and share the modified version with us for further investigation.

We have attached the video demonstration for your reference.

If you have any other questions or need further assistance, please don’t hesitate to reach out.

Regards,
Tamilarasan G.


Attachment: MAUI_timepicker_(2)_bee67da6.zip


MN Markus Nottbohm March 20, 2025 02:14 PM UTC

Hallo  Tamilarasan,


thank you very much  for the fast reply, today after I updated to the newest version 28.2.12. it is working as expected. I used the previous version before 28.2.11


Thanks,

Markus



TG Tamilarasan Gunasekaran Syncfusion Team March 21, 2025 12:06 PM UTC

Hi Markus,

We are glad to know that the issue has been resolved. Please let us know if you require any further assistance on this. We will be happy to assist you.

Regards,
Tamilarasan G.



TG Tamilarasan Gunasekaran Syncfusion Team March 21, 2025 12:16 PM UTC

Hi Elijah Hilliker,

# Regarding SfPopup issue.

Could you please confirm the issue with the Microsoft.Maui.Controls NuGet package version 9.0.40, which is already a known issue in version 9.0.50? We have addressed and resolved the issue, and the fix will be included in the 2025 Volume 1 main release, scheduled for availability next week.

Regards,
Tamilarasan G.



EH Elijah Hilliker replied to Tamilarasan Gunasekaran March 21, 2025 01:00 PM UTC

Yes, we downgraded the Microsoft.Maui.Controls to 9.0.40 and it is working again. Thanks for the response.



TG Tamilarasan Gunasekaran Syncfusion Team March 24, 2025 02:14 PM UTC

Hi Elijah Hilliker,

We'll keep you updated and let you know once the 2025 Volume 1 main release is rolled out. Thank you for your patience!

Regards,
Tamilarasan G.



TG Tamilarasan Gunasekaran Syncfusion Team March 27, 2025 11:21 AM UTC

Hi Elijah Hilliker,

We are glad to announce that our Essential Studio® 2025 Volume 1 Main Release V29.1.33 is rolled out with the fix "Popup is not opening again after closed in MAUI v9.0.50" and is available for download under the following link.

 

Essential Studio® 2025 Volume 1 Main Release v29.1.33 is available for download | Announcements Forums | Syncfusion®

We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.

 

Root Cause: The IsVisible property of the PopupView was being set to false while assigning the parent.

Regards,
Tamilarasan.



Loader.
Up arrow icon