kartik-v / yii2-editable

An enhanced editable widget for Yii 2.0 that allows easy editing of displayed data with html inputs, widgets and more.
http://demos.krajee.com/editable
Other
112 stars 55 forks source link

Problem in editable popup on mobile devices #166

Closed crazyursus92 closed 5 years ago

crazyursus92 commented 6 years ago

When I focus a input or textarea in my mobile phone (Android), the phone is opening keyboard and after 1 second keyboard is been closing.

ezgif com-video-to-gif

slavanb commented 6 years ago

Have you solved the problem? I have the same effect on all android devices

slavanb commented 6 years ago

fix this problem in composer.json

"kartik-v/bootstrap-popover-x": "1.4.3"

./composer.phar update

after that clean cache in /backend/web/assets - all to trash

phuongdev89 commented 5 years ago

1.4.7 still not working @slavanb you saved my life

kartik-v commented 5 years ago

Latest release is v1.7.8 and remember when you update extension and JS / CSS assets via composer you need to take care of any stale assets and cache that need to be cleared and then retry.

alessio6181 commented 4 years ago

Hi, I have the same problem. This is my scenario: "require": { "php": ">=5.6.0", "yiisoft/yii2": "~2.0.14", "yiisoft/yii2-bootstrap": "@dev", "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0", "rmrevin/yii2-fontawesome": "2.10.*", "kartik-v/yii2-tabs-x": "dev-master", "kartik-v/yii2-editable": "dev-master", "kartik-v/yii2-grid": "dev-master", "kartik-v/yii2-widget-touchspin": "dev-master", "alexandernst/yii2-device-detect": "0.0.12", "kartik-v/bootstrap-popover-x": "1.4.7"

with kartik-v/bootstrap-popover-x v1.4.3 popup in editablegrid not firing. Thanks in advance. Alessio

rcdevargas commented 4 years ago

Has this been fixed? Having same trouble on mobile editable popup using v1.7.8. Please help.

alessio6181 commented 4 years ago

Has this been fixed? Having same trouble on mobile editable popup using v1.7.8. Please help.

no, then I used temporarily a modal popup

drew1two commented 3 years ago

Hi Alessio, Could you show me how you implemented your temporary modal popup please? I'm having the same issue as above. Downgrading to 1.4.3 didn't help either.

Thanks in advance

phuongdev89 commented 3 years ago

I'm using mobile-detect and change asPopover to false if androidOS detected and it has been fixed https://github.com/serbanghita/Mobile-Detect/wiki/Code-examples

$os = new Mobile_Detect();
...
'asPopover' => !$os->isAndroidOS()

1.4.3 only help you if you are using bootstrap3

kartik-v commented 3 years ago

This is fixed via this commit as mentioned in kartik-v/bootstrap-popover-x#46