ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

RadListView - swipe not working on RHS column [Android] #1444

Open justinliu6165 opened 4 years ago

justinliu6165 commented 4 years ago

Please, provide the details below:

Tell us about the problem

Hello,

I have a ListViewGridLayout with 2 columns (spanCount='2'). It has a swipe template added to it, which works on iOS but on android the swiping doesn't work on the RHS column only - the LHS column works fine.

I haven't been able to find anything relating to this issue.

Which platform(s) does your issue occur on?

This is an issue only on android, tested both emulator and device.

iOS works fine.

Please provide the following version numbers that your issue occurs with:

Progress NativeScript UI plugin version: ^8.2.0 CLI: 6.3.3 Cross-platform modules: "tns-ios": { "version": "6.3.0" }, "tns-android": { "version": "6.3.0" }

Please tell us how to recreate the issue in as much detail as possible.

I have two slightly different examples that i tried, One using playground and the other recreated using nativescript-ui-samples code.

Playground example: https://play.nativescript.org/?template=play-tsc&id=3ciOJ5&v=4

AND

Nativescript-ui-samples - swipe actions page.

git clone https://github.com/ProgressNS/nativescript-ui-samples.git

cd listview

tns run android

Added the grid layout (code below) to the RadListView found at nativescript-ui-samples/listview/app/examples/swipe-actions/swipe-actions-multiple-page.xml.

then navigate to the "Multiple actions" item page using emulator

<lv:RadListView.listViewLayout>
    <lv:ListViewGridLayout scrollDirection="Vertical" spanCount='2'  />
</lv:RadListView.listViewLayout>