我正在使用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