SyncFusion AutoComplete IsSelectedItemsVisibleInDropDown, Popup delay Property Alternative Not found

Hi Team, I am currently Working on Shifting my Project from Xamarin to MAUI Where I used SfAutoComplete Control but I don't find  IsSelectedItemsVisibleInDropDown property and also Popup Delay property Alternative In MAUI Can you Please Suggest any Solution for Both These Property.



3 Replies

HC Hariharan Chokkalingam Syncfusion Team September 30, 2024 11:48 AM UTC

Hi Muhammad Usman,


Thank you for reaching out to us. We have reviewed your query and are happy to assist you.


Query: PopupDelay Support


Currently, we do not have PopupDelay support for the .NET MAUI SfAutocomplete control. As a workaround, we would like to suggest using Thread.Sleep in the DropdownOpening event of the SfAutocomplete. Kindly review the following code snippet and the attached sample for more details:


Snippet:

<!-- XAML -->

<editors:SfAutocomplete DropdownOpening="SfAutocomplete_DropdownOpening" ... />

 

// Code behind

private void SfAutocomplete_DropdownOpening(object sender, System.ComponentModel.CancelEventArgs e)

{

    // You can set the required delay here

    Thread.Sleep(1000);

}

 


Query : IsSelectedItemsVisibleInDropDown  support


Currently, we do not have IsSelectedItemsVisibleInDropDown support in .NET MAUI SfAutocomplete. We have already created a feature request for this "Provide IsSelectedItemsVisibleInDropDown support for SfAutocomplete and SfComboBox in .NET MAUI". Please find the link below to track the status of the feature implementation.


Feedback Link: Feedback-50280


Please cast your vote to make it count. We will prioritize the features every release based on the demands and we do not have an immediate plan to implement this feature since we have committed to already planned work. So, this feature will be available in any of our upcoming releases.


If you have any more specifications/suggestions for the feature request, you can add them as a comment in the portal. We will share the release details in the feedback itself.


Don’t hesitate to contact us if you have further queries or concerns.


Regards,

Hariharan.


Attachment: AutocompleteMaui_28788c4.zip


MU Muhammad Usman October 1, 2024 05:14 AM UTC

Thanks.




SS Sarasilmiya Shahul Hameed Syncfusion Team October 2, 2024 03:57 AM UTC

You're welcome, please get back to us if you need any other assistance. 


Loader.
Up arrow icon