igniteui-angular
igniteui-angular copied to clipboard
IGX-ACTION-STRIP does not show up on grid
Description
igx-action-strip does not appear on the grid.
- igniteui-angular version: 17.0.13
- browser: Chrome / Edge
Steps to reproduce
Modules:
@NgModule({
import: [
...
IgxGridModule,
IgxActionStripModule,
],
})
...
Template:
<igx-grid [data]="data">
<igx-column field="name"></igx-column>
<igx-column field="age"></igx-column>
<igx-action-strip>
<igx-grid-pinning-actions></igx-grid-pinning-actions>
</igx-action-strip>
</igx-grid>
Component:
data = [
{
name: 'John',
age: 25,
},
{
name: 'Paul',
age: 26,
},
];
Result
When hovering the row, the action strip is not visible. Using the inspector we can see it appears inside the row but outside of the display container
Expected result
Should see the action buttons
@Poseclop I can't reproduce this here - https://www.infragistics.com/angular-demos/grid/grid-action-strip
Are using some customized theme and is the theme of the grid loaded on the page? The grid from the screenshot looks a bit different.
Can you send a sample demonstrating the issue?
There has been no recent activity and this issue has been marked inactive.