Icekeith / mobiscroll

Automatically exported from code.google.com/p/mobiscroll
0 stars 0 forks source link

Text field focus on overlay popup #132

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Html page have some text fields and one mobiscroll date picker
2. Click to input value to text fields
3. Click to date picker field

What is the expected output? What do you see instead?
Expected, the date picker presents without text field focused.

What version of the product are you using? On what operating system?
2.5.0 on Android phone. In-app webview, webkit

Please provide any additional information below.
Please see attached image

Original issue reported on code.google.com by tranlam...@gmail.com on 17 Apr 2013 at 3:03

GoogleCodeExporter commented 8 years ago
re upload screenshot

Original comment by tranlam...@gmail.com on 17 Apr 2013 at 3:10

Attachments:

GoogleCodeExporter commented 8 years ago
Solve by remove all "focus" event on all other fields:
    $("#dateField").focus(function(){
        $('input').blur();
    });

Original comment by tranlam...@gmail.com on 17 Apr 2013 at 10:10