0

我在 wijmo 网格标题上使用复选框,以选择下面的所有行

<input type="checkbox" [(ngModel)]="_chkSelectAll" (change)="SelectAll()" id="chkSelectAll"/>

并使用以下 ts 代码

 SelectAll(): void {     
        var chk = document.getElementById('chkSelectAll') as HTMLInputElement;
        var chkSelect = chk.checked;

        this._chkSelectAll = chkSelect;
    }

但出现错误

Error: Attempt to use a dehydrated detector: CMComponent_1 -> ngModelChange

我还在 SelectAll() 函数中使用了 setTimeout() ,但它对我不起作用。

相同的代码正在使用plunker

4

0 回答 0