Or some reason, changing an item in the collection is not working. My source is on ObservableCollection. I can remove items from it and they do not show in the list after that, but when I change the data in the code behind, the item is not changing.
<
telerikDataControls:RadListView
x:Name
=
"listView"
SwipeOffset
=
"70, 0, 70, 0"
IsItemSwipeEnabled
=
"True"
SelectionMode
=
"Single"
SwipeThreshold
=
"70"
Grid.Row
=
"1"
>
<
telerikDataControls:RadListView.ItemTemplate
>
<
DataTemplate
>
<
telerikListView:ListViewTemplateCell
>
<
telerikListView:ListViewTemplateCell.View
>
<
Grid
HeightRequest
=
"70"
Margin
=
"0,20,0,0"
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"70"
/>
<
ColumnDefinition
Width
=
"*"
/>
</
Grid.ColumnDefinitions
>
<
Image
Grid.Column
=
"0"
Source
=
"{Binding ImageUrl}"
Aspect
=
"AspectFill"
Margin
=
"0,0,5,0"
/>
<
StackLayout
Orientation
=
"Vertical"
Grid.Column
=
"1"
>
<
Label
Margin
=
"10,10,10,0"
FontAttributes
=
"Bold"
FontSize
=
"16"
Text
=
"{Binding Address}"
TextColor
=
"Black"
/>
<
Label
Grid.Row
=
"1"
Margin
=
"10,0,10,10"
FontAttributes
=
"Italic"
FontSize
=
"13"
Text
=
"{Binding CombinedAddress}"
TextColor
=
"Black"
/>
</
StackLayout
>
</
Grid
>
</
telerikListView:ListViewTemplateCell.View
>
</
telerikListView:ListViewTemplateCell
>
</
DataTemplate
>
</
telerikDataControls:RadListView.ItemTemplate
>
<
telerikDataControls:RadListView.ItemSwipeContentTemplate
>
<
DataTemplate
>
<
Grid
Margin
=
"0"
Padding
=
"0"
ColumnSpacing
=
"0"
RowSpacing
=
"0"
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"70"
/>
<
ColumnDefinition
Width
=
"*"
/>
<
ColumnDefinition
Width
=
"70"
/>
</
Grid.ColumnDefinitions
>
<
Button
Margin
=
"0"
BackgroundColor
=
"#8BC640"
BorderRadius
=
"0"
Grid.Column
=
"0"
Clicked
=
"OnShare"
Image
=
"sharesmall.png"
WidthRequest
=
"70"
/>
<
Button
Margin
=
"0"
BackgroundColor
=
"Red"
BorderRadius
=
"0"
Grid.Column
=
"2"
Clicked
=
"OnDelete"
Image
=
"whitexsmall.png"
TextColor
=
"White"
WidthRequest
=
"70"
/>
</
Grid
>
</
DataTemplate
>
</
telerikDataControls:RadListView.ItemSwipeContentTemplate
>
</
telerikDataControls:RadListView
>