- Disable browser autocomplete in jot ACL search field
ACL.prototype.on_search = function(event){
if (this.kp_timer) clearTimeout(this.kp_timer);
- this.kp_timer = setTimeout( this.search.bind(this), 1000);
+
+ // Triggers an immediate search while preventing form submission
+ if (event.key === 'Enter') {
+ this.search();
+ event.preventDefault();
+ } else {
+ this.kp_timer = setTimeout( this.search.bind(this), 500);
+ }
};
ACL.prototype.on_showall = function(event){
<div id="acl-wrapper">
- <input id="acl-search">
+ <input id="acl-search" autocomplete="off">
<a id="acl-showall">{{$showall}}</a>
<div id="acl-list">
<div id="acl-list-content">
<button id="acl-showall" class="btn btn-block btn-default"><i class="fa fa-globe"></i> {{$showall}}</button>
</div>
<div class="form-group form-group-search">
- <input type="text" id="acl-search" class="form-control form-search">
+ <input type="text" id="acl-search" class="form-control form-search" autocomplete="off">
</div>
<div id="acl-list">
<div id="acl-list-content"></div>