The scrollbar on UWP is blocking the content (including the options button which is also not clickable because of it
Workaround: Add a style for the column header and apply margin to the Options button:
<ContentPage.Resources>
<ResourceDictionary>
<telerikGrid:DataGridColumnHeaderStyle x:Key="headerstyle"
TextColor="Black" OptionsButtonMargin="0,0,20,0"
OptionsButtonFontSize="30"
BorderColor="Black"
BorderThickness="2"/>
</ResourceDictionary>
</ContentPage.Resources>
<Grid>
<telerikGrid:RadDataGrid ItemsSource="{Binding Items}" BackgroundColor="Red" AutoGenerateColumns="false">
<telerikGrid:RadDataGrid.Columns>
<telerikGrid:DataGridTextColumn PropertyName="Country" HeaderStyle="{StaticResource headerstyle}"/>
<telerikGrid:DataGridTextColumn PropertyName="Capital" HeaderStyle="{StaticResource headerstyle}"/>
</telerikGrid:RadDataGrid.Columns>
</telerikGrid:RadDataGrid>
</Grid>
Having a ComboBox inside the RadListView ItemTemplate.
Binding the ComboBox SelectedItems.
On UWP when PropertyChanged is called on an item in the ListView, it fires the ComboBox SelectedItems CollectionChanged with action Remove, which is wrong behavior. And as a result the ComboBox SelectedItems collection is cleared.
On Android an iOS works as expected, the ComboBox SelectedItems collection is not cleared.
Do you have plans to develop controls for the UNO platform?
There are other companies that have already stated that they are working on it, for example,
https://www.syncfusion.com/blogs/post/collaboration-syncfusion-uno-platform.aspx
LongPress is called on element that is already disposed.
ObjectDisposedException is thrown:
at Telerik.XamarinForms.Common.NativeGestureRecognizer.ToDip
at Telerik.XamarinForms.Common.GestureListener.OnLongPress
Stack-Trace
Xamarin Exception Stack: System.ObjectDisposedException: Cannot access a disposed object. Object name: 'Xamarin.Forms.Platform.Android.Platform+DefaultRenderer'. at Java.Interop.JniPeerMembers.AssertSelf (Java.Interop.IJavaPeerable self) [0x00029] in <2e109281f9514c53b44688fd4549adb2>:0 at Java.Interop.JniPeerMembers+JniInstanceMethods.InvokeNonvirtualObjectMethod (System.String encodedMember, Java.Interop.IJavaPeerable self, Java.Interop.JniArgumentValue* parameters) [0x00000] in <2e109281f9514c53b44688fd4549adb2>:0 at Android.Views.View.get_Context () [0x0000a] in <9d68875f5dbd432db5314e1c0d96cb02>:0 at Telerik.XamarinForms.Common.NativeGestureRecognizer.ToDip (System.Single px) [0x00000] in <9f139977bc32402dabe4bb05ac247bb2>:0 at Telerik.XamarinForms.Common.GestureListener.OnLongPress (Android.Views.MotionEvent e) [0x0000c] in <9f139977bc32402dabe4bb05ac247bb2>:0 at Android.Views.GestureDetector+IOnGestureListenerInvoker.n_OnLongPress_Landroid_view_MotionEvent_ (System.IntPtr jnienv, System.IntPtr native__this, System.IntPtr native_e) [0x0000f] in <9d68875f5dbd432db5314e1c0d96cb02>:0 at (wrapper dynamic-method) Android.Runtime.DynamicMethodNameCounter.102(intptr,intptr,intptr)
The issue occurs on the following device:
Android: 12Barcode reader which can scan a barcode and input it in an entry.
<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.
xamarin forms on wpf is now official, https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/wpf we need to support telerik on there aswell..
The app crashes randomly when scrolling through the images loaded from the tagit app.
The crash occurs on iPhone SE 2020 iOS 14.8, it doesn't crash every time you scroll through the images, the crash appears randomly.
crash on iPhone X iOS 14.8
The issue cannot be reproduced on iPhone 12 ProMax iOS 14.8.
Appointments in MonthView can be shown inside day cells as shapes or as text (with and without shape) - this is controlled by DisplayMode property of the AppointmentsStyle.
Currently, when using Text DisplayMode there is an additional label indicating the amount of the appointments for a certain day that remain hidden (due to not enough space). We should provide some kind of indication in case of Shape DisplayMode that there are more appointments inside the day cell.
We are attempting to use the chart's CartesianPlotBandAnnotation to highlight a section of a graph on a DateTimeContinuousAxis. This works well on Android, but in our code it produces an exception on iOS (stack trace below).
I attempted to reproduce the problem with the SDKBrowser solution. I converted the PlotBandAnnotationsCSharp to use a DateTimeContinuousAxis on the horizontal axis, and TemporalData for the ViewModel. When I try to run this on an iOS simulator, it doesn't even navigate to the page; maybe an exception is being thrown and caught that I can't see.
I'm attaching the revised SDKBrowser solution, and including the stack trace from our app (below).
System.ArgumentNullException: Value cannot be null.
When the DataGrid a few rows of data and scrolls to page 3 or above, the edit mode will be cancelled quickly and cannot be edited.