Called when a column in the table is resized. Applies a css class to the table element.
()
| 101 | |
| 102 | /** Called when a column in the table is resized. Applies a css class to the table element. */ |
| 103 | setResized() { |
| 104 | this.elementRef.nativeElement!.classList.add(WITH_RESIZED_COLUMN_CLASS); |
| 105 | } |
| 106 | |
| 107 | private _listenForRowHoverEvents() { |
| 108 | this.ngZone.runOutsideAngular(() => { |