RWAP/jquery-ui-touch-punch

Select Tag unclickable on Mobile

Opened this issue · 2 comments

Hello,
I am doing some test and I have problem when the item i make sortable contain a select tag that become unclickable on mobile.

Any workaround for this?

<ul id="e_list_catalog" class="connected_list_e list_container">
    <li class="list_item_e_id" id="1">
        E01
        <select>
            <option value="0">30"</option>
            <option value="1">1'</option>
            <option value="2">2'</option>
        </select>
    </li>

    <li class="list_item_e_id" id="2">
        E02
        <select>
            <option value="0">30"</option>
            <option value="1">1'</option>
            <option value="2">2'</option>
        </select>
    </li>
    <li class="list_item_e_id" id="3">
        E03
        <select>
            <option value="0">30"</option>
            <option value="1">1'</option>
            <option value="2">2'</option>
        </select>
    </li>
</ul>

Related issue: furf#320

RWAP commented

Look at lines 176 to 190 of the code.

Basically it attempts to distinguish between an attempt to drag something and a click on an element by the distance moved (less than 10 pixels) and time you have your finger held down (500ms). You may need to adjust this.

I am unfortunately, not a mobile phone developer, so don't realistically know why this does not work

RWAP commented

Did you ever manage to resolve this issue?