Yuri Beliakov
Yuri Beliakov
My workaround ``` export class TabLinkDirective extends ClrTabLink { @HostListener('touchend') onTouchEnd() { if (this.inOverflow) { this.activate(); } } } ```
One of possible workaround is to add some delay after opening modal, but before displaying datagrid: ```ts openModal() { this.showModal = true; setTimeout(() => this.showDataGrid = true); } ``` Another...
@michael-letcher Could you please provide an example of code with WA? I can find only this workaround, but it is working without of changing `ngModel`: ``` Option ``` Here is...