When I tap on the RadComboBox arrow in listview it gives the below exception. Kindly help
event registration is overwriting existing delegate. either just use events or your own delegate: xamarin.forms.platform.ios.listviewrenderer+listviewdatasource uikit.uiscrollview+_uiscrollviewdelegate
Hi there,
We use a Radlistview to show a series of items with prices and a +/- to change the amount. We have made those items swipeable, so the user can easily swipe those items away to delete them. See example below (sensitive information is censored):
However, even when users do not swipe the item to the right, they can not interact with the minus button. This seems to be because the button is in the swipeable area. If we make the swipeable area smaller, some of the minus button is interactable, and if we make it larger, the plus button also stops being interactable.
Note that the minus button can't be interacted with even if the button is visible.
Is this design as intended, or is this a bug? If it is intended, what is the recommended way to allow the button to be interacted with, while also allowing the list item to be swiped?
<ContentPage
xmlns:telerikDataControls="clr-namespace:Telerik.XamarinForms.DataControls;assembly=Telerik.XamarinForms.DataControls"
xmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"
xmlns:telerikListView="clr-namespace:Telerik.XamarinForms.DataControls.ListView;assembly=Telerik.XamarinForms.DataControls"
xmlns:telerikPrimitives="clr-namespace:Telerik.XamarinForms.Primitives;assembly=Telerik.XamarinForms.Primitives"
xmlns:xct="http://xamarin.com/schemas/2020/toolkit">
<telerikDataControls:RadListView
Grid.Row="0"
IsItemSwipeEnabled="True"
ItemTemplateSelector="{StaticResource ReceiptDataSelector}"
ItemsSource="{Binding Receipt.ReceiptLines}"
SelectedItems="{Binding SelectedReceiptLines}"
SelectionMode="Multiple"
SwipeOffset="90, 0, 0, 0"
SwipeThreshold="20">
<telerikDataControls:RadListView.SelectedItemStyle>
<telerikListView:ListViewItemStyle BackgroundColor="{StaticResource SelectionAccentColor}" BorderWidth="0" />
</telerikDataControls:RadListView.SelectedItemStyle>
<telerikDataControls:RadListView.ItemSwipeContentTemplate>
<DataTemplate x:DataType="components:IReceiptLine">
<Grid
Margin="0"
Padding="0"
ColumnSpacing="0"
RowSpacing="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="90" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<telerikInput:RadButton
Grid.Column="0"
Margin="0"
BackgroundColor="Red"
BorderRadius="0"
Command="{Binding RemoveLineCommand, Source={RelativeSource AncestorType={x:Type local:SalePageModel}}}"
CommandParameter="{Binding}"
FontFamily="FontAwesomeSolid"
FontSize="Medium"
Text=""
WidthRequest="90" />
</Grid>
</DataTemplate>
</telerikDataControls:RadListView.ItemSwipeContentTemplate>
</telerikDataControls:RadListView>
code is:
Hello Team,
May I have an URL with compatibility between TelerikUIXamarin and Xamarin Forms - history and depndencies? Possibly iOS/XCode.
Thanks
Jacek
Hi,
I have a Xamarin Forms application using RadListView. As part of the ItemTemplate I have a Switch as described below:
<Switch
HorizontalOptions="Start"
IsEnabled="True"
IsToggled="{Binding Toggle}"
IsVisible="{Binding IsConfirmCheckVisible}"
OnColor="Green"
ThumbColor="Green">
<Switch.Triggers>
<DataTrigger
Binding="{Binding Source={x:Reference chkConfirmCheck}, Path=IsToggled}"
TargetType="Switch"
Value="False">
<Setter Property="ThumbColor" Value="Red" />
<Setter Property="OnColor" Value="Red" />
<Setter Property="IsEnabled" Value="False" />
</DataTrigger>
</Switch.Triggers>
<Switch.Behaviors>
<behaviors:EventToCommandBehavior
Command="{Binding Source={x:Reference ParentBindingContext}, Path=BindingContext.UpdateTrickCommand}"
CommandParameter="{Binding .}"
EventName="Toggled" />
</Switch.Behaviors>
</Switch>
If I have a list of items in the RadListView and I start to scroll, then the Toggled event is fired on the Switch. All items for the RadListView is an ObservableCollection and it is loaded when the screen is opened. Is there an issue with the code above that would cause the Toggled event to be fired upon scrolling in a RadListView? This issue only appears on iOS and on a Phone. The iPad and Android devices behave as it's supposed to i.e. Just scrolls as normal and does not fire the Toggle event.
Telerik UI For Xamarin Version: 2022.1.117.1Does Xamarin ImageEditor have swipe gesture ? To change between several images.
Regards
Hi, I am using remote search and I need to show all elements after the Focused when the Text is empty (after focused I can get ItemsSource but the Suggestions PopUp is empty) !!! How can I do that?
Thank you...