Unplanned
Last Updated: 26 Feb 2018 10:26 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: UI for Xamarin
Type: Bug Report
0
An exception is thrown when the AutoComplete is hosted inside a horizontal StackLayout.
Unplanned
Last Updated: 23 Mar 2018 08:54 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 0
Category: UI for Xamarin
Type: Feature Request
1
Client request for complete implementation of a DataForm CustomEditor, that uses a RadListView, to be added to the SDKBrowser examples.
Completed
Last Updated: 14 Dec 2017 13:26 by ADMIN
When the AUtoComplete is bound to an ObservableCollection and you add/remove items from the collection -> the changes are not applied in the AutoComplete in iOS and Android. The UWP implementation works as expected.

Available in minor release 2017.3.1214. It will also be available in the R1 2018 release.
Completed
Last Updated: 11 Oct 2017 07:25 by ADMIN
We get great support from Petar Marchev -- the guy really goes the extra mile to provide information and suggestions.  It's impressive, and much appreciated. Steve Rothkopf, Thinking Software
Completed
Last Updated: 05 Feb 2018 23:09 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 2
Category: UI for Xamarin
Type: Feature Request
1
Please add an API reference section to the existing UI for Xamarin documentation.
Available in the R1 2018 release. 
Unplanned
Last Updated: 27 Feb 2018 10:46 by ADMIN
Completed
Last Updated: 20 Jun 2018 14:14 by ADMIN
Available in the 2018 R2 SP release.
Unplanned
Last Updated: 26 Feb 2018 10:31 by ADMIN
Completed
Last Updated: 07 Mar 2018 07:40 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 4
Category: UI for Xamarin
Type: Bug Report
4
When there are only two items in the ItemsSource and users reorder them, the underlying collection is not reordered

Edit: Avalable in R3 2017 SP release.
Unplanned
Last Updated: 30 Apr 2018 08:36 by Skurken
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: UI for Xamarin
Type: Feature Request
3
a label that support text formatting using HTML tags like <color>, <size>, <font>, <b>, <i>, <u>, <br>, <a>. Similar to the WinForms label (http://docs.telerik.com/devtools/winforms/panels-and-labels/label/html-like-text-formatting)
Unplanned
Last Updated: 18 Sep 2017 07:38 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: UI for Xamarin
Type: Feature Request
1
Implement  a component that can be used as button, themes with Telerik theme and can host templated content.
Completed
Last Updated: 21 May 2018 13:29 by ADMIN
ADMIN
Created by: Tsvyatko
Comments: 0
Category: UI for Xamarin
Type: Feature Request
1
Available in the R2 2018 release.
Completed
Last Updated: 18 Jan 2019 14:42 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 4
Category: UI for Xamarin
Type: Feature Request
1

			
Completed
Last Updated: 03 Apr 2018 12:04 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
1

			
Completed
Last Updated: 18 Oct 2018 11:46 by ADMIN
Available in the R3 2018 SP release.
Declined
Last Updated: 26 Feb 2018 16:33 by ADMIN
Created by: Michael
Comments: 1
Category: UI for Xamarin
Type: Feature Request
2
Please add support for ListViewCachingStrategy to the ListView. It's performance for large collection of items makes it unusable for production.
Unplanned
Last Updated: 21 Jul 2017 10:08 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Add view mode showing Quarters, just like the month view mode.
Unplanned
Last Updated: 26 Jul 2017 06:18 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Currently, the parameter names are not descriptive but names like p0, p1, etc. are being used.
Unplanned
Last Updated: 18 Jul 2017 13:17 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: UI for Xamarin
Type: Feature Request
0
Currently, you need to create a separate class for each binding. We should consider improving the behavior so that no such overhead is required from the users.
Declined
Last Updated: 26 Feb 2018 10:53 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: UI for Xamarin
Type: Feature Request
1
Currently, the AutoCompleteBox's Tokens property is of type Collection<object>, this presents a problem when adding and removing items programmatically as there is no observability.

When an item is added or removed, the UI is not updated even though the token s collection has been. 

Here is a simple repro:

private void RadListView_OnItemTapped(object sender, ItemTapEventArgs e)
{
    // For this example e.Item is of type string

    (autoComplete.Tokens as Collection<object>)?.Add(e?.Item);

    // Item is added, but UI is not updated
    Debug.WriteLine($"Tokens count: {(autoComplete.Tokens as Collection<object>)?.Count}");
}