Cordova Crosswalk with JQM buttons don't render correctly down / active states

143 Views Asked by At

Just migrated my Cordova project to Cordova Crosswalk. Performance of the chromium engine is very nice and responsive, but there is a problem with most button states in JQM. This problem occurs even in arm and x86 cw compilation. I tryed different tags (button, input and a) and different data-attributes.

Behavior: After press a form button or any button in a popup window, the button remains without down/active state. Hover state is working after the configured hover delay. Also "blank" buttons without form submission or popup call are working. The tap (even vclick,vmousedown,touchend) events would be fired correctly.

As example, this button works (Calls a option popup menu):

<li>
    <select id="language" name="language" data-native-menu="false" data-theme="b" data-overlay-theme="a">
        <option value="en">English</option>
        <option value="de">Deutsch</option>
    </select>
</li>

This button calls a popup and remains inactive.

<li>
    <button type="button" id="register" name="register" data-theme="b">New Account</button>
</li>

Any idea what could prevent the system from rendering the down state correctly?

0

There are 0 best solutions below