workflowproducts / envelope

Publish web apps based on your PostgreSQL database fast!
https://workflowproducts.com/envelope.html
Apache License 2.0
53 stars 2 forks source link

Maxlength should cause focus to move to next field #114

Closed josephtocci closed 6 years ago

josephtocci commented 6 years ago
document.getElementById('field1').addEventListener('keyup', function (event) {
    if (document.getElementById('field1').value.length >= document.getElementById('field1').getAttribute('maxlength')) {
        document.getElementById('field2').focus();
    }
});
crosstocci commented 6 years ago

Added in next release.