novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
14 lines (11 loc) • 321 B
text/typescript
// NG2
import { Directive, AfterViewInit, ElementRef } from '@angular/core';
({
selector: '[keepFilterFocused]'
})
export class NovoTableKeepFilterFocus implements AfterViewInit {
constructor(private element: ElementRef) { }
ngAfterViewInit() {
this.element.nativeElement.focus();
}
}