Posted 30 October 2018, 11:22 am EST
Hi,
I am using wj-combo-box to show a drop-down inside a wj-flex-grid-column in a angular 2 component. For the rest of the component the wj-combo-box is working fine but in one component when I click the “down” arrow on the dropdown it shows the list for a second and it goes away. Also, when I hover on the “down” arrow it keeps flickering to white and grey which I think is related to this issue.
<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>
</wj-flex-grid-column>
