I'm using this html code

<form action="#" method="post">
        <fieldset>

<label class="desc" id="title10" for="Field10">
                    How many children do you have?
                </label>

                    <select id="Field10" name="Field10" class="field select large" tabindex="5">
                        <option value="0" selected="selected">0 </option>
                        <option value="1">1 </option>
                        <option value="2">2 </option>
                        <option value="3">3 </option>
                        <option value="4">4 </option>
                        <option value="5">5 </option>
                        <option value="6">6 </option>
                        <option value="7">7 </option>
                        <option value="8">8 </option>
                        <option value="9">9 </option>
                    </select>

            <input type="submit" value="Send message" />

        </fieldset>
    </form>

not working in iphone and android. when I tap on select box nothing happens.

I'm using iScroll 4 which is creating problem

<script type="application/javascript" src="iscroll-lite.js"></script>

<script type="text/javascript">

var myScroll;
function loaded() {
    myScroll = new iScroll('wrapper');
}

document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);

document.addEventListener('DOMContentLoaded', loaded, false);

</script>

I think this is a solution but I don't know how to implement this

http://groups.google.com/group/iscroll/browse_thread/thread/5b2fbad6aa667907

link|improve this question

64% accept rate
What is it doing? – Matt Ball Apr 21 '11 at 14:27
nothing happens when I tap on <select> dropdown – Jitendra Vyas Apr 21 '11 at 14:28
I'm also using iscroll4 on the page – Jitendra Vyas Apr 21 '11 at 14:37
Do you have a demo that reproduces the problem for us to see? – Matt Ball Apr 21 '11 at 14:39
I just searched on net that iscroll has problem with form elements. searching for solution. – Jitendra Vyas Apr 21 '11 at 14:42
feedback

8 Answers

up vote 22 down vote accepted
+250

The problem is that iScroll cancels the default behavior of your select tag (Not a very good implementation if you ask me).

This occurs in the _start() function on line 195:

e.preventDefault();

If you comment that out you'll notice the select tag works again.

But commenting it out means you've hacked the library which might break other desirable iScroll functionality. So here's a better workaround:

var selectField = document.getElementById('Field10');
selectField.addEventListener('touchstart' /*'mousedown'*/, function(e) {
    e.stopPropagation();
}, false);

That code will allow the default behavior to occur, without propagating the event to iScroll where it screws everything up.

Since your JS is not inside any JQuery-like onReady() event, you'll have to make sure to you put this code AFTER the html where your select elements are defined.

Note that for mobile devices the event is 'touchstart', but for your PC browser it will be 'mousedown'

link|improve this answer
By the way, have this up and running here if you want to test it or see the full source: edrooth.com/test – sym3tri Apr 24 '11 at 8:03
@sym3tri - Thanks for answer. Will it also solve the problem in Android browser? and Instead of 'Field10' can't we use 'select' because I want to fix all select elements on page. – Jitendra Vyas Apr 24 '11 at 8:30
It should work in Android too, but I can't say for sure b/c I don't have an android phone. I tested it in the iPhone and it works. And sure, you can do the same thing for all select tags, just call getElementsbyTagName('select') and loop through them all. – sym3tri Apr 24 '11 at 8:59
7  
iScroll took care of it github.com/cubiq/iscroll/blob/master/examples/form-fields/… – Umair Ashraf Jul 31 '11 at 9:11
1  
yes but just FYI, this fix doesn't work on Android to me. – Umair Ashraf Oct 12 '11 at 9:05
show 7 more comments
feedback

I had the same issue on the iScroll 4.1.9 on android, I just replaced the line 95 (on my version) :

onBeforeScrollStart: function (e) { e.preventDefault(); },

by :

onBeforeScrollStart: function (e) {var nodeType = e.explicitOriginalTarget ? e.explicitOriginalTarget.nodeName.toLowerCase():(e.target ? e.target.nodeName.toLowerCase():''); if(nodeType !='select' && nodeType !='option' && nodeType !='input' && nodeType!='textarea') e.preventDefault(); },           

that enable focus on input, select and textarea tags

link|improve this answer
would this have a problem when you upgrade iscroll? your modifying the library, isnt that dangerous? – ianace Nov 10 '11 at 3:26
1  
well hopefully Matteo will fix this issue on a new version of the library.... – bastien Nov 15 '11 at 9:41
feedback

Here is the solution

/* on page add this after all scripts */
    <script type="text/javascript">
            var myScroll;
            function loaded() {
                myScroll = new iScroll('wrapper');
            }
            document.addEventListener('DOMContentLoaded', function(){ setTimeout(loaded,500);}, false);
    </script>

/* attach a script for fix */
        $(document).ready(function(){
            var my_select = document.getElementsByTagName('select');
            for (var i=0; i<my_select.length; i++) {
                my_select[i].addEventListener('touchstart' /*'mousedown'*/, function(e) {
                    myScroll.destroy();
                    setTimeout(function(){myScroll = new iScroll('wrapper');},500);
                }, false);
            }

    /*if you have input problems */

            var input = document.getElementById('input');

            if (input) {
                input.addEventListener('touchstart' /*'mousedown'*/, function(e) {
                    e.stopPropagation();
                }, false);
            }    
        });
link|improve this answer
ok will try this – Jitendra Vyas Jun 8 '11 at 17:33
it works :) – comonitos Jun 21 '11 at 19:56
thanks, it works! – keithics Sep 21 '11 at 6:22
thanks, working.. – Sandy09 Mar 31 at 11:45
Thanks a lot. After long search i saw your post. This is very helpful to me, Working fine :) – vinothini Apr 4 at 14:15
feedback

Finally fixed this for Android. Ended up modifying a couple of lines in iscroll.js

Here's how we initialize iScroll.

// code from https://github.com/cubiq/iscroll/blob/master/examples/form-fields/index.html
// don't preventDefault for form controls
_menuScroll = new iScroll('menu_wrapper',{
    useTransform: false,
    onBeforeScrollStart: function (e) {
        var target = e.target;
        while (target.nodeType != 1) target = target.parentNode;

        if (target.tagName != 'SELECT' && target.tagName != 'INPUT' && target.tagName != 'TEXTAREA')
        e.preventDefault();
    }
});

The onBeforeScrollStart is what allows the controls' default behaviors to take place. Android browser seems to have problem with useTransform, so turn to false.

Finally, some additional iscroll code needed to be excluded when useTransform is false:

// iscroll.js v4.1.9
// line 216:
if (that.options.useTransform) bar.style.cssText += ';pointer-events:none;-' + vendor + '-transition-property:-' + vendor + '-transform;-' + vendor + '-transition-timing-function:cubic-bezier(0.33,0.66,0.66,1);-' + vendor + '-transition-duration:0;-' + vendor + '-transform:' + trnOpen + '0,0' + trnClose;

// line 295:
if (that.options.useTransform) that[dir + 'ScrollbarIndicator'].style[vendor + 'Transform'] = trnOpen + (dir == 'h' ? pos + 'px,0' : '0,' + pos + 'px') + trnClose;

Tried several other methods before realizing that it had to do with the css that iscroll adds.

link|improve this answer
you need to add OPTION to the set of tags tested in the beforescrollstart handler – Scott Evernden Apr 9 at 22:32
nothing works for me :( – ghostCoder May 15 at 14:12
feedback

There is a bug with Android when -webkit-transform:translate3d is applied to a container that has a select box or password box[1]. The boxed area to activate those elements move, and are not where you think they'd be. Additionally, password boxes paint in a different location, so it appears that you have two input elements instead of one.

I work at AppMobi and we have developed a toolkit library that has fixes for these. We've implemented custom select box widgets and a replacement for the password input field. Check it out below.

https://github.com/imaffett/AppMobi.toolkit

[1] I think the author of the comment is talking about this bug https://bugs.webkit.org/show_bug.cgi?id=50552

link|improve this answer
feedback

another code example for solution. and thanks for previous comments! Using Jquery!

After:

$(document).ready(function() {            
    document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);

    document.addEventListener('DOMContentLoaded', setTimeout(function () { loaded(); }, 200), false);
});

in loaded function

function loaded() {
    var allSelects = $('select');
    allSelects.each(function(index, item) {
                        item.addEventListener('touchstart' /*'mousedown'*/, function(e) { e.stopPropagation(); }, false);
                    });
}
link|improve this answer
feedback

Here's a really easy fix that worked for me. I noticed in the Android browsers that on initial page load I could not click on a select box but I was able to click on a text input field that I was using for Search. Then I noticed that after I clicked on the text input field, it would recognize me clicking a select box. So all I did was add this to the javascript function I was using to load the Search page...

$('#search').focus();

So when the search page gets loaded, it automatically focuses on the text input field but does not pop up the keyboard, which is exactly what I wanted. Sorry my example is not publicly accessible, but hopefully this can still help somebody.

link|improve this answer
feedback

Replacing line, onBeforeScrollStart: function (e) { e.preventDefault(); },

By

onBeforeScrollStart: function (e) {
    var nodeType = e.explicitOriginalTarget ? e.explicitOriginalTarget.nodeName.toLowerCase():(e.target ? e.target.nodeName.toLowerCase():'');

    if(nodeType !='select' && nodeType !='option' && nodeType !='input' && nodeType!='textarea') {
         e.preventDefault();
    }
},

In iScroll.js Works

link|improve this answer
which version of iscroll? – ghostCoder May 15 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.