-
Notifications
You must be signed in to change notification settings - Fork 157
Closed
Labels
🐛 bugAny issue that describes a bugAny issue that describes a bug✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.sliderversion: 8.2.0
Description
Description
Slider is positioned at the top area of its container. Also, in order to visualize the slider, I have to set 100% height and width of the component, if this is not set, the whole slider is hidden and only the igx-thumb element is visible
<igx-column field="UnitPrice" header="Unit Price" dataType="number" width="200px">
<ng-template igxCell let-cell="cell" let-val let-row>
<igx-slider id="slider" [minValue]="0" [maxValue]="100" [continuous]="true" [value]="val" style="width: 100%; height: 100%" ></igx-slider>
</ng-template>
</igx-column>- igniteui-angular version: 8.2.0
- browser: any
Steps to reproduce
- Open the sample
- See
Unit Pricecolumn
Result
The slider is positioned at the top area of the cell.

Expected result
The slider to be positioned at the center area of the cell.
Notes:
- I believe the issue with the position is caused by
nghost display:block style, because when I disable it, everything is working as expected.
[_nghost-kmr-c2] {
display: block;
}Metadata
Metadata
Assignees
Labels
🐛 bugAny issue that describes a bugAny issue that describes a bug✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.sliderversion: 8.2.0

