How can I trigger the "NEXT" button instead of the "DONE" button in the IME keyboard for consecutive input fields? It is described in the design docs here, but I can't find any info on the markup or scripting to trigger this IME view over the standard IME behavior.
Here's a sample of the markup I've tried. It successfuly triggers the IME, but with the DONE button instead of NEXT.
<form id="myForm" action="./tabbed-layout.html" method="post"> <div class="tabbable-row"> <label for="name">Name:</label> <input class="tabbable form-control" type="text" name="name" id="name" value="" tabindex="1"> <label for="pword">Password:</label> <input class="tabbable form-control" type="text" name="pword" id="pword" value="" tabindex="1"> </div> <div class="tabbable-row"> <input class="tabbable btn" type="submit" value="Submit"> </div> </form>