We have a RadListView that holds a list of items and have set the pressed state so that when you press it, the row highlights
<
telerikDataControls:RadListView.PressedItemStyle
>
<
telerikListView:ListViewItemStyle
BackgroundColor
=
"{Binding SongListRowSelectionColor}"
BorderColor
=
"{x:Static SongListRowGreyLine}"
BorderLocation
=
"Bottom"
BorderWidth
=
"1"
/>
</
telerikDataControls:RadListView.PressedItemStyle
>
<
telerikDataControls:RadListView.SelectedItemStyle
>
<
telerikListView:ListViewItemStyle
BackgroundColor
=
"Transparent"
BorderColor
=
"{x:Static SongListRowGreyLine}"
BorderLocation
=
"Bottom"
BorderWidth
=
"1"
/>
</
telerikDataControls:RadListView.SelectedItemStyle
>
<
telerikDataControls:RadListView.ItemStyle
>
<
telerikListView:ListViewItemStyle
BackgroundColor
=
"Transparent"
BorderColor
=
"{x:Static SongListRowGreyLine}"
BorderLocation
=
"Bottom"
BorderWidth
=
"1"
/>
</
telerikDataControls:RadListView.ItemStyle
>
Above our list we have a blue banner that is a stack layout with a few buttons with space in-between that isn't "clickable" the problem we are seeing is when you tap the white space (because you miss tapping on the button or something) is that PressedItemStyle activates for all rows within the list view
we don't want this behavior and i wasn't able to find anything related to why this was happening. Just wondering how we can prevent this from happening while keeping the presseditemstyle
Thanks