Elshad Seyidmammadov

Results 12 comments of Elshad Seyidmammadov

@ishigo1987 thanks for reporting the issue. When I looked at your snippet, I realized that you are returning an object in the [cellType ](https://docs.tabris.com/latest/api/CollectionView.html#celltype)callback function. However, it must return a...

@ahmadov thank you for reporting the issue. Before all to let you know that **tabris 2.x** uses old Android support libraries intended for 28 and lower versions. The issue is...

@ishigo1987 I have investigated this issue and found a strange solution. If you pay attention to JS sources of the mentioned plugins, you can realize the usage of the Cordova...

@ishigo1987, I have tested the snippet that you provided with Samsung A70 (Android 10) and Emulator Pixel 2 XL (Android 8.1) and it works as expected for me, or at...

@ahmadov, with your snippet several `Cells` are created and all of them have a single RadioButton child. If you want to group the RadioButtons, you should add multiple RadioButtons to...

@ahmadov, in this case, you can use `ScrollView` instead of `ListView` **OR** you can use the hacky solution below for the long lists: ```TypeScript import { Stack, TextView, CollectionView, Composite,...

@violuke, thanks for reporting the issue. We will figure it out.

@violuke, I tried running your snippet above but realized that you don't get `arrayBuffer` correctly in the following line: ``` formData.append("image", new Blob([image.arrayBuffer()], {type: image.type}), "some_image.jpg"); ``` The `arrayBuffer()` method...

Thanks @cpetrov for reporting the issue. After investigating the issue, we found that the total **deltaY** that we get from **scroll** event always is **1** pixel less than expected(actual) when...

@ishigo1987 I think you can detect the keyboard close delay reason even in your application. I would suggest comment out other codes, components, and properties `step by step` until there...