SUPPORT-9339: Fix
This commit is contained in:
parent
ede5bf85a0
commit
ab7cdbb6b9
12 changed files with 223 additions and 124 deletions
|
|
@ -49,7 +49,7 @@ export class SetFilter implements IFilterComp {
|
|||
|
||||
private initCheckBox(id: string, value: string, index: number): HTMLInputElement {
|
||||
this.eGui.insertAdjacentHTML('beforeend', this.OPTION_TEMPLATE);
|
||||
this.eGui.querySelectorAll('.ag-filter-value')[index].innerHTML = value;
|
||||
(this.eGui.querySelectorAll('.ag-filter-value')[index] as HTMLElement).textContent = value;
|
||||
let checkbox = this.eGui.querySelectorAll('.ag-filter-checkbox')[index] as HTMLInputElement;
|
||||
checkbox.setAttribute('id', id);
|
||||
checkbox.addEventListener('change', this.onCheckBoxChanged.bind(this));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue