Posted 2 November 2018, 1:46 pm EST
<wj-flex-grid-column [binding]="clientStatusName" [width]="'0.90*'" [cssClass]="'italic'"
[header]="'Client Status'" [minWidth]="30" >
<template wjFlexGridCellTemplate [cellType]="'ColumnHeader'" let-cell="cell">
<div [wjTooltip]="'#clientStatusToolTip'">
<label class="hoverTxt" >Client Status</label>
<span class="wj-glyph-filter" (click)="onFilterClick(cell)"></span>
</div>
<div style="text-align: left;">
<wj-combo-box [itemsSource]="clientStatusRefData" [placeholder]="'Select'" class="gridHeaders" [(selectedItem)]="copyBelowObj.clientStatusCode"
[isRequired]="false" [displayMemberPath]="'codeNm'" [selectedValuePath]="'codeKey'" style="width: 80%"></wj-combo-box>
<span [wjTooltip]="'Copy Below'" (click)="copyBelowValues(copyBelowObj.clientStatusCode,{property:'clientStatusCode', displayNameProperty: 'clientStatusName'})">
<img src="assets/images/copy-below.png" style="width: 11px;" />
</span>
</div>
</template>
<template wjFlexGridCellTemplate [cellType]="'Cell'" let-cell="cell">
<wj-combo-box #clientCd [itemsSource]="clientStatusRefData" [isRequired]="false" [isEditable]="false" [(selectedValue)]="cell.item.clientStatusCode"
[displayMemberPath]="'codeNm'" [selectedValuePath]="'codeKey'" (selectedIndexChanged)="onGridDropDownChange(clientCd.selectedItem,cell.item,{property:'clientStatusCode', displayNameProperty: 'clientStatusName'})"></wj-combo-box>
</template>
</wj-flex-grid-column>
I have multiple columns almost similar to the above code on the same HTML page and for every column and every row the “selectedIndexChanged” event keeps on firing continuously and never stops on chrome. But in IE the event is fired for visible rows only, as I scroll down the list, the event keeps firing for every row that comes into screen
