Last active
December 19, 2019 17:03
-
-
Save rattanchauhan/9a0f4e97523afa6eab7e07ff4d084611 to your computer and use it in GitHub Desktop.
AngularJs | Directive for Auto Focus Next element on Enter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module("myApp", []); | |
app.directive("moveNextOnEnter", function() { | |
return { | |
restrict: "A", | |
link: function($scope, element) { | |
element.bind("keyup", function(e) { | |
if (e.which == 13) { | |
var $nextElement = element.next(); | |
if($nextElement.length) { | |
$nextElement[0].focus(); | |
} | |
} | |
}); | |
} | |
} | |
}); | |
// USAGE | |
<div ng-app="myApp"> | |
<form> | |
<input type="text" id="part1" ng-model="myObject.part1" maxlength="7" move-next-on-enter /> | |
<input type="text" id="part2" ng-model="myObject.part2" maxlength="12" move-next-on-enter /> | |
<input type="text" id="part3" ng-model="myObject.part3" maxlength="12"/> | |
</form> | |
</div> |
Hi Rattan,
event.preventDefault(); was the problem.
I got rid of this line, as I do not really need it.
BR,
Nicolas
Great. thanks a lot, I'll update the gist as this part is totally optional.
Thanks,
Rattan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Nicolas,
I haven't updated this snippet for the last 3 years so I can't be sure if this works with the latest builds. If you find an improvement do let me know.
Thanks,
Rattan