Completed
Last Updated: 19 Nov 2019 12:06 by ADMIN
Release 2019.3.1119 (R3 2019 minor release)
Created by: Kristen
Comments: 0
Category: UI for Xamarin
Type: Bug Report
2
We are only using the Rad ListView, so have only needed the Lite package but it requires the SkiaSharp package as well. It seems that Map, ImageEditor, PdfViewer and DataGrid controls are added in the lite nuget package. 
Completed
Last Updated: 20 Jan 2021 11:14 by ADMIN
Release R1 2021
Created by: Vitaly
Comments: 1
Category: UI for Xamarin
Type: Bug Report
2

Hello,

 

RadPopup control causes memory leaks on iOS.

Here is the repro project https://github.com/VitalyKnyazev/RadPopupLeak

 

Thanks

Vitaly

 

Unplanned
Last Updated: 09 Jun 2021 12:37 by ADMIN
When arrows are expanded ( in horizontal position ) a part of them is cut off on UWP
Declined
Last Updated: 27 Mar 2020 11:13 by ADMIN

I have upgraded my Xamarin.Forms to version 4.5 and installed the dependent AndroidX nuget packages.  After upgrading UI for Xamarin to version 2020.1.318.1, I'm getting 3 errors below in my Xamarin Android project that seems to have to do with min SDK version when I try to build:

java/lang/String;Ljava/util/List;)[B :  invalid opcode ba - invokedynamic requires --min-sdk-version >= 26 (currently 13) 

com.android.dx.cf.code.SimException: ERROR in androidx.browser.customtabs.CustomTabsService$1.newSessionInternal:(Landroid/support/customtabs/ICustomTabsCallback;Landroid/app/PendingIntent;)Z: invalid opcode ba - invokedynamic requires --min-sdk-version >= 26 (currently 13)

com.android.dx.cf.code.SimException: ERROR in androidx.browser.trusted.ConnectionHolder.getServiceWrapper:()Lcom/google/common/util/concurrent/ListenableFuture;: invalid opcode ba - invokedynamic requires --min-sdk-version >= 26 (currently 13) 


I'm targeting Android 9 and set the minimum supported SDK to 26.  The error hasn't gone away.

I upgraded to latest Telerik to address a reference issue with AndroidX.RecyclerView but it seems that these new errors are showing up now. 

Is there something I can do to resolve the error or do I just have to wait for the next Telerik UI for Xamarin release?

 

Unplanned
Last Updated: 13 May 2022 07:22 by ADMIN
Created by: Jinfeng
Comments: 3
Category: UI for Xamarin
Type: Bug Report
2
RdBusyIndicator BusyContent data binding does not work. If a string constant is assigned to the     

 

     <telerik:RadBusyIndicator
                HorizontalOptions="FillAndExpand"
                VerticalOptions="FillAndExpand"
                IsBusy="{Binding IsBusy}"
                IsVisible="{Binding IsBusy}"
                AnimationContentHeightRequest="60"
                AnimationContentWidthRequest="60"
                AnimationType="Animation3"
                AnimationContentColor="{DynamicResource BrandPrimaryColor}">
                <telerik:RadBusyIndicator.BusyContent>
                    <Label Text="{Binding BusyContent}" HorizontalOptions="Center"/>
                </telerik:RadBusyIndicator.BusyContent>
      </telerik:RadBusyIndicator>

 

RdBusyIndicator BusyContent data binding does not work for the above Label inside the "telerik:RadBusyIndicator.BusyContent". If a string constant is assigned to the Text(for example "Loading..."), then it works perfectly.

The view model 100% has the property "BusyContent" with a value. By the way, the IsBusy and IsVisible data binding work fine.   

Unplanned
Last Updated: 30 Apr 2020 06:27 by ADMIN
Created by: Abhishek
Comments: 0
Category: UI for Xamarin
Type: Feature Request
2

A SweepAxis (aka SweepSeries) is a chart where where the data is plotted from Left-to-Right and when the Data reaches the end, then any new data will start from the left side again by overwriting the oldest data in the chart.

A good example of this in an application is Windows's PerfMon application.

Unplanned
Last Updated: 07 May 2020 08:01 by ADMIN
Created by: Dayanand
Comments: 1
Category: UI for Xamarin
Type: Bug Report
2

The chart's series are not detecting property changed notifications on items in the series.

Note:

  • This works as expected in UWP
  • The series also doesn't seem to detect any ItemsSource property changes either.

Reproducible

If you have a data model where the properties are using INotifyPropertyChanged, for example from your NotifyPropertyChangedBase

public class Item : NotifyPropertyChangedBase
{
    private DateTime date;
    private int value;

    public DateTime Date
    {
        get => date;
        set => UpdateValue(ref date, value);
    }

    public int Value
    {
        get => value;
        set => UpdateValue(ref this.value, value);
    }
}

Here's a view model to use, invoke the command to observe the problem

public class MainViewModel : NotifyPropertyChangedBase
{
    public MainViewModel()
    {
        var rand = new Random();

        DataPoints = new ObservableCollection<Item>(Enumerable.Range(1,5).Select(i=>new Item
        {
            Date = DateTime.Today.AddDays(-i),
            Value = rand.Next(1,10)
        }));

        ChangeDataCommand = new Command(() =>
        {
            foreach (var dataPoint in DataPoints)
            {
                dataPoint.Value = rand.Next(1, 20);
            }
        });
    }

    private ObservableCollection<Item> dataPoints;
    public ObservableCollection<Item> DataPoints
    {
        get => dataPoints;
        set => UpdateValue(ref dataPoints, value);
    }

    public Command ChangeDataCommand { get; set; }
}

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>

    <telerikChart:RadCartesianChart x:Name="Chart">
        <telerikChart:RadCartesianChart.HorizontalAxis>
            <telerikChart:DateTimeContinuousAxis LabelFormat="MM-dd"
                                                 LabelFitMode="Rotate" />
        </telerikChart:RadCartesianChart.HorizontalAxis>
        <telerikChart:RadCartesianChart.VerticalAxis>
            <telerikChart:NumericalAxis Minimum="0" Maximum="10"/>
        </telerikChart:RadCartesianChart.VerticalAxis>
        <telerikChart:RadCartesianChart.Series>
            <telerikChart:LineSeries ValueBinding="Value"
                                           CategoryBinding="Date"
                                           ItemsSource="{Binding DataPoints}" />
        </telerikChart:RadCartesianChart.Series>
    </telerikChart:RadCartesianChart>

    <Button Text="Change Data"
            Command="{Binding ChangeDataCommand}"
            HorizontalOptions="Fill"
            Margin="5"
            Grid.Row="1"/>
</Grid>

Unplanned
Last Updated: 06 Oct 2020 08:43 by ADMIN
Created by: Stefan
Comments: 2
Category: UI for Xamarin
Type: Feature Request
2

Hello guys,

Can you tell me is it possible to change Font Family in Rad Legend with some kind of workaround?  Im trying to find a way in renderer but i cant find any

Unplanned
Last Updated: 23 Apr 2021 14:51 by ADMIN
Created by: Morten
Comments: 2
Category: UI for Xamarin
Type: Feature Request
2
I'd like a little advice and suggest a new control.

Prior to iOS14 we used https://github.com/jamesmontemagno/MediaPlugin as our media picker in our Xamarin forms app.

Since https://github.com/jamesmontemagno/MediaPlugin does not work on iOS14 and is not being actively developed, we switched to xamarin/Essentials and now face a rotation issue (https://github.com/xamarin/Essentials/issues/1514) for a long time.

There seems not to be any alternatives!
Completed
Last Updated: 04 Jun 2021 14:32 by ADMIN
Release R2 2021
Visual Studio for Mac 8.9 no longer includes the Xamarin.Forms previewer in favor of XAML Hot Reload.  This leads to the following exception when trying to install Telerik Xamarin VS for Mac extension: "
Xamarin VS for Mac extension throws "Xamarin.FormsPreviewer v.4.15 could not be found in any repository" on install".
Unplanned
Last Updated: 02 Jun 2021 13:37 by ADMIN
Created by: Thomas
Comments: 0
Category: UI for Xamarin
Type: Feature Request
2
Currently the control ignores IsTabStop and TabIndex properties for keyboard tab navigation.
Completed
Last Updated: 11 May 2022 14:56 by ADMIN
Release R2 2022
Created by: Anbu
Comments: 0
Category: UI for Xamarin
Type: Feature Request
2
Add linear progress bar which indicates the progress of a task.
Unplanned
Last Updated: 19 Oct 2021 07:36 by ADMIN
Created by: Ben
Comments: 0
Category: UI for Xamarin
Type: Feature Request
2
I see there are Tokens inside of the AutoComplete but standalone options would be great to have in the Telerik UI for Xamarin suite
Completed
Last Updated: 26 Feb 2018 10:41 by ADMIN
ADMIN
Created by: Nikolay
Comments: 1
Category: UI for Xamarin
Type: Feature Request
1
There should be an event which is fired when the rendering is complete.
Completed
Last Updated: 26 Feb 2018 10:45 by ADMIN
Declined
Last Updated: 26 Feb 2018 16:29 by ADMIN
Created by: Shritama
Comments: 1
Category: UI for Xamarin
Type: Feature Request
1
ScatterPlot currently support only numerical axis in android. It will best to support categorical axis in android.
Declined
Last Updated: 12 Jul 2016 08:31 by ADMIN
Created by: Syed
Comments: 1
Category: UI for Xamarin
Type: Bug Report
1
please help me i am using telerik control for ios using xamarin how i can use selected date event handler in telerik control thank you.
Declined
Last Updated: 26 Feb 2018 16:33 by ADMIN
Created by: Geoff
Comments: 2
Category: UI for Xamarin
Type: Feature Request
1
When will you have a version of Telerik Rad controls in Visual Studio for Xamarin and Xamarin.Forms now that Microsoft has purchased Xamarin?
Completed
Last Updated: 30 Mar 2017 07:56 by ADMIN
ADMIN
Created by: Rosy Topchiyska
Comments: 1
Category: UI for Xamarin
Type: Feature Request
1
Add support for UTC DateTime for DateEditor and TimeEditor.
Declined
Last Updated: 26 Feb 2018 11:01 by ADMIN
Created by: Oliver
Comments: 1
Category: UI for Xamarin
Type: Feature Request
1
Something similar or superior to the devexpress-grid would be fantastic.

https://components.xamarin.com/view/devexpress-grid