Unplanned
Last Updated: 16 Jul 2024 08:50 by Jiri
Created by: Jiri
Comments: 2
Category: AutoComplete
Type: Feature Request
1

Hi Team,

I need to know when the SuggestionsView is visible or not. This appears to be independent of the existing events, so I am requesting an official feature for this to be implemented.

I do have a shaky workaround right now, but it is not reliable and this ultimately requires something from the Telerik UI for Maui side to be implemented.

Thank you!

Jiri

In Development
Last Updated: 01 Jul 2024 07:25 by ADMIN
Scheduled for 2024 Q3
when setting IsEnabled to false, the control is still enabled. It should be disabled. Works fine on Android and WinUI. 
Unplanned
Last Updated: 24 May 2024 08:42 by Rob

For example expose vertical text alignment properties, padding, etc.

 

Unplanned
Last Updated: 19 Mar 2024 18:22 by Erik Damgaard
Once the suggestions  dropdown for RadAutoComplete is opened, If we click on the Hamburger icon , the suggestion  dropdown does not dismiss at all.
Unplanned
Last Updated: 14 Mar 2024 11:06 by Jamison

If the AutoComplete is nested inside a modal Popup and Unfocus() is called on SuggestionItemSelected or Completed, the cursor/focus stays within the AutoComplete.

The same does not happen (the AutoComplete is properly unfocused) when the control is placed in MainPage.

Unplanned
Last Updated: 06 Mar 2024 13:35 by Jamison
When the AutoComplete is placed inside a modal popup, the dropdown can't be closed on WinUI when clicking outside.
Unplanned
Last Updated: 10 Jan 2024 14:42 by Steve
If you have an AutoComplete control as the first element of the visual tree of the page, when you open a Popup control, the popup takes the focus and after closing the popup, the focus is set back to the AutoComplete - if there is text in the AutoComplete input, its SuggestionView is shown without user interaction with the control.
Unplanned
Last Updated: 03 Nov 2023 07:02 by Davy
Created by: Davy
Comments: 0
Category: AutoComplete
Type: Feature Request
0
- a way to close this result popup by the Escape key,

- A way to move with the keyboards up and down arrows from the input part to the result popup
Unplanned
Last Updated: 27 Sep 2023 14:20 by Scott

Currently the SuggestionView does not stay open all the time

I can get it to open on focus by running this code and attaching it to the Focused event

    Focused += SupporterAutoCompleteSearchBar_Focused;

    private void SupporterAutoCompleteSearchBar_Focused(object sender, FocusEventArgs e)
    {
        ShowSuggestions();
    }
 but if I type in the search bar, like a letter "a", and then backspace to get rid of it so I'm left with an empty string, the SuggestionView disappears. The SuggestionView also disappears if I assign a new list, such as through the Remote Search feature in the documentation while the search text is an empty string. I have gotten around these two issues by adding a dispatcher that will call ShowSuggestions(); after 100 milliseconds but I get this flicker effect where the SuggestionView disappears and then comes back again. It's very jarring.

I have looked in the decompiled RadAutoComplete class in visual studio and it looks like the code is set up so the SuggestionView disappears when the Text is null or empty. I would like a bindableproperty for this control that always keeps the SuggestionView open or a workaround that doesn't cause the SuggestionView to disappear in the above circumstances
Unplanned
Last Updated: 12 Apr 2023 13:08 by Scott
Created by: Scott
Comments: 0
Category: AutoComplete
Type: Feature Request
2
Add Header and Footer template in AutoComplete control.
Declined
Last Updated: 01 Mar 2023 17:03 by ADMIN

I am using RadAutoComplete inside DataGridTemplateColumn CellTemplate.

it loads data correctly when load first time, but when I update value, it not changing for AutoComplete

 

Unplanned
Last Updated: 12 Oct 2022 06:20 by Curtis
When I use an autocomplete, I type "John" which comes up with "John Doe" high lighted in the input box, if i hit tab i get a tab in the input box. I want to have an option to select item from the drop-down using the keyboard keys. 
Unplanned
Last Updated: 23 Sep 2022 11:39 by Arkady
For example when adding input controls (entries) inside the NoResultsTemplate, I want to type in the entries but the focus is moved to the Autocomplete control. Same behavior with SuggestionView and SuggestionItem Templates

On macOS the focus is on the Entry inside the templates