Add markers in line graph.
Telerik UI for Xamarin should allow NuGet distribution.
Gauges for Xamarin.Forms
Implement built-in legend for the chart. Available in the R3 2017 release. More information you can find here: http://docs.telerik.com/devtools/xamarin/controls/chart/features/chart-legend
Currently, there is NuGet distribution via local files and server. However, they are only for Xamarin.Forms. There should be packages and server enablement for the Xamarin.iOS and Xamarin.Android platforms.
We have a RadCalendar and we set the CalendarViewMode to "Year". And we tap on an arbitrary month in order to open it (change the ViewMode to "Month"). EXPECTED result: The selected (tapped) month is opened, i.e. the ViewMode is changed to "Month". And this is happening on Android. ACTUAL result: On iOS the result is this exception: System.InvalidCastException: Unable to cast object of type 'TelerikUI.TKCalendarYearPresenter' to type 'UIKit.UIView'
Item tapped is raised after hold gesture in IOS listview. The control should recognize a hold gesture is initiated and item tapped event should not be raised.
Currently customers can be notified when a token is created. If the control is used in plain text scenario there is no way to notify the user when suggestion item is selected.
There are 2 approaches to customize the theme -> directly override the resources in the BlueResources dictionary or create a custom resource dictionary and merge it instead of the BlueResources one. If you take the first approach in a .NET standard project and override one of the colors -> an ArgumentException is thrown: Use the second approach as a workaround where you create a custom resource dictionary, copy all the colors from the original one and modify them within your custom one. Available in the R3 2018 SP release.
Create a framework which will expose touch events for consuming from Xamarin Forms apps.
Please add support for ListViewCachingStrategy to the ListView. It's performance for large collection of items makes it unusable for production.
Available in minor release 2017.3.927. It will also be available in the R3 2017 SP release.
As of 2018.2.620, UI for Xamarin will invoke approximate 600 warnings when compiling an Android project that uses SDK later than 23. This is due to the fact that the UI for Xamarin.Android controls are built on API 23, which will surface warnings at compile time if the project consuming them is using a later version. Although UI for Xamarin is compatible with newer version, and causes no impact on the outcome, these warnings obscure any meaningful warnings the user might have. This is a problem when projects are built in a CI/Cd pipeline and warnings are treated as important/significant for enterprise CD deployment (i.e. scrolling through 600 warnings to find any legitimate warnings is not practical). Available in R3 2018 release.
When Maximizing and Restoring the application's window, the RadSideDrawer's MainContent sometime gets measured wrong. This results in a corrupt state where all the main content is off-screen when the app is in the Restored state.
This can be tricky to reproduce without guidance, therefore I've recorded a video (attached) to demonstrate how to reproduce it as fast as possible with the code below:
<
ContentPage
...>
<
telerikPrimitives:RadSideDrawer
DrawerLength
=
"400"
AreGesturesEnabled
=
"false"
DrawerLocation
=
"Bottom"
DrawerTransitionType
=
"SlideInOnTop"
DrawerTransitionDuration
=
"0.2"
IsOpen
=
"False"
VerticalOptions
=
"FillAndExpand"
>
<
telerikPrimitives:RadSideDrawer.DrawerContent
>
<
StackLayout
VerticalOptions
=
"FillAndExpand"
BackgroundColor
=
"GreenYellow"
>
<
Label
Text
=
"DrawerContent"
VerticalOptions
=
"FillAndExpand"
/>
</
StackLayout
>
</
telerikPrimitives:RadSideDrawer.DrawerContent
>
<
telerikPrimitives:RadSideDrawer.MainContent
>
<
StackLayout
Orientation
=
"Vertical"
VerticalOptions
=
"FillAndExpand"
BackgroundColor
=
"LightBlue"
Margin
=
"0"
Padding
=
"10"
>
<
Button
Text
=
"Telerik"
FontSize
=
"Large"
BackgroundColor
=
"Orange"
HorizontalOptions
=
"FillAndExpand"
/>
</
StackLayout
>
</
telerikPrimitives:RadSideDrawer.MainContent
>
</
telerikPrimitives:RadSideDrawer
>
</
ContentPage
>
If we have a ListView with a CheckBox inside the ItemTemplate and the whole ListView is placed in a Popup control, following the next steps:
1. Open the popup
2. Check and uncheck the CheckBox control in any of the items.
3. Click into the popup and then outside to close it.
NullReferenceException is raised on iOS.