Satyajit Shetye
Results
2
comments of
Satyajit Shetye
> I had same issue, but doing lots of R&D , I did some custom code, it solve my problem. > I created a common method and call from component...
``` import { Directive, ElementRef, Renderer2, OnInit, AfterViewChecked } from '@angular/core'; @Directive({ selector: '[emptyRow]' }) export class EmptyRowDirective implements OnInit, AfterViewChecked { textElement: any; actionElement : any; constructor(private renderer: Renderer2,...