Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,9 @@
%grid-display-container-tr {
width: 100%;
overflow: visible;
flex: 1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change itself is fine, however since it changes the size of the cell's virtual container you'll also have to change how right pinning positions the cells. It currently sets an incorrect offset so if you pin any column to the right, you'll see that it's not correctly positioned to the right edge of the grid:

image

// needed to override the min-width of the column headers
min-width: 0;
}

%grid-mrl-block {
Expand Down Expand Up @@ -915,7 +918,7 @@
}

padding-block: 0;
flex: 1 0 auto;
flex: 0 0 auto;
background: inherit;
z-index: 4;
cursor: move;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1598,13 +1598,6 @@ export class IgxColumnComponent implements AfterContentInit, OnDestroy, ColumnTy
return !this.grid.isPinningToStart && pinnedCols[0] === this;
}

/** @hidden @internal **/
public get rightPinnedOffset(): string {
return this.pinned && !this.grid.isPinningToStart ?
- this.grid.pinnedWidth - this.grid.headerFeaturesWidth + 'px' :
null;
}

/** @hidden @internal **/
public get gridRowSpan(): number {
return this.rowEnd && this.rowStart ? this.rowEnd - this.rowStart : 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
<div class="igx-grid__mrl-block"
[class.igx-grid__td--pinned-last]="col.hasLastPinnedChildColumn"
[class.igx-grid__td--pinned-first]="col.hasFirstPinnedChildColumn"
[style.left]="mrlRightPinnedOffset"
[ngStyle]="{
'grid-template-rows':col.getGridTemplate(true),
'grid-template-columns':col.getGridTemplate(false),
Expand Down Expand Up @@ -113,7 +112,6 @@
[style.min-width]="col.resolvedWidth"
[style.max-width]="col.resolvedWidth"
[style.flex-basis]="col.resolvedWidth"
[style.left]="col.rightPinnedOffset"
[width]="col.getCellWidth()"
[visibleColumnIndex]="col.visibleIndex"
[value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ export class IgxGridRowComponent extends IgxRowDirective {
};
}

public get mrlRightPinnedOffset(): string {
return !this.grid.isPinningToStart ?
- this.grid.pinnedWidth - this.grid.headerFeaturesWidth + 'px' :
null;
}

public getContextMRL(pinnedCols, row) {
return {
$implicit: pinnedCols,
Expand Down
19 changes: 14 additions & 5 deletions projects/igniteui-angular/src/lib/grids/grid/grid.pinning.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { IgxGridComponent } from './grid.component';
import { DropPosition } from '../moving/moving.service';
import { clearGridSubs, setupGridScrollDetection } from '../../test-utils/helper-utils.spec';
import { SortingDirection } from '../../data-operations/sorting-strategy';
import { IPinningConfig } from '../public_api';
import { IgxGridHeaderRowComponent, IPinningConfig } from '../public_api';

describe('IgxGrid - Column Pinning #grid', () => {

Expand Down Expand Up @@ -130,7 +130,7 @@ describe('IgxGrid - Column Pinning #grid', () => {
expect(GridFunctions.isCellPinned(cell)).toBe(true);
});

it('should allow pinning/unpinning via the column API', () => {
it('should allow pinning/unpinning via the column API', () => {
const col = grid.getColumnByName('ID');

col.pinned = true;
Expand Down Expand Up @@ -569,7 +569,7 @@ describe('IgxGrid - Column Pinning #grid', () => {
});

it('should correctly pin column to right when row selectors are enabled.', () => {
grid.rowSelection = GridSelectionMode.multiple;
grid.rowSelection = GridSelectionMode.multiple;
fix.detectChanges();

// check row DOM
Expand Down Expand Up @@ -690,9 +690,14 @@ describe('IgxGrid - Column Pinning #grid', () => {
expect(grid.getColumnByName('CompanyName').isFirstPinned).toBeTruthy();
const row = grid.gridAPI.get_row_by_index(0).nativeElement;
// check cells are rendered after main display container and have left offset
const headerRowDisplayContainer = fix.debugElement.query(By.directive(IgxGridHeaderRowComponent)).nativeElement.querySelector(".igx-display-container");
const displayContainerRect = headerRowDisplayContainer.getBoundingClientRect();
let xAxis = displayContainerRect.x + displayContainerRect.width;
for (let i = 0; i <= pinnedCols.length - 1; i++) {
const elem = row.children[i + 1];
expect(parseInt((elem as any).style.left, 10)).toBe(-330);
const rect = elem.getBoundingClientRect();
expect(rect.x).toBe(xAxis);
xAxis += rect.width;
}

// check correct headers have left border
Expand All @@ -711,9 +716,13 @@ describe('IgxGrid - Column Pinning #grid', () => {
const row = grid.gridAPI.get_row_by_index(0).nativeElement;
expect(GridFunctions.getRowDisplayContainer(fix, 0)).toBeTruthy();

const headerRowdisplayContainer = fix.debugElement.query(By.directive(IgxGridHeaderRowComponent)).nativeElement.querySelector(".igx-display-container");
const displayContainerRect = headerRowdisplayContainer.getBoundingClientRect();
const xAxis = displayContainerRect.x + displayContainerRect.width;

expect(row.children[1].classList.contains(`${CELL_PINNED_CLASS}-first`)).toBeTruthy();
expect(row.children[1].classList.contains(GRID_MRL_BLOCK)).toBeTruthy();
expect(parseInt((row.children[1] as any).style.left, 10)).toEqual(-408);
expect(row.children[1].getBoundingClientRect().x).toEqual(xAxis);

// check correct headers have left border
const firstPinnedHeader = grid.headerGroupsList.find(group => group.isPinned);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@
[ngStyle]="column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger"
[column]="column"
[style.min-width]="column.resolvedWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL"
[style.flex-basis]="column.resolvedWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL"
[style.left]="column.rightPinnedOffset">
[style.flex-basis]="column.resolvedWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL">
</igx-grid-header-group>
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,18 @@ describe('Basic IgxHierarchicalGrid #hGrid', () => {
);
jasmine.getEnv().allowRespy(false);
});

it('should calculate correct column headers width when rowSelection + expand indicators', () => {
hierarchicalGrid.rowSelection = 'multiple';
fixture.detectChanges();

const headerRowElement = hierarchicalGrid.nativeElement.querySelector("igx-grid-header-row");
const headerRowDiv = headerRowElement.querySelector(".igx-grid__tr");
const headerRowChildren = Array.from(headerRowDiv.children);

const elementsWidth = headerRowChildren.reduce((acc,el) => acc+(el as HTMLElement).offsetWidth, 0);
expect(elementsWidth).toEqual((headerRowDiv as HTMLElement).offsetWidth);
});
});

describe('IgxHierarchicalGrid Row Islands #hGrid', () => {
Expand Down Expand Up @@ -1689,7 +1701,7 @@ describe('Basic IgxHierarchicalGrid #hGrid', () => {
UIInteractions.simulateClickAndSelectEvent(row.expander);
fixture.detectChanges();

let childGrid = hierarchicalGrid.gridAPI.getChildGrids()[0];
const childGrid = hierarchicalGrid.gridAPI.getChildGrids()[0];
const childRow = childGrid.gridAPI.get_row_by_index(0) as IgxHierarchicalRowComponent;
UIInteractions.simulateClickAndSelectEvent(childRow.expander);
fixture.detectChanges();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@
[style.min-width]="col.resolvedWidth"
[style.max-width]="col.resolvedWidth"
[style.flex-basis]="col.resolvedWidth"
[style.left]="col.rightPinnedOffset"
[width]="col.getCellWidth()"
[visibleColumnIndex]="col.visibleIndex"
[value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
[ngStyle]="column.headerGroupStyles |igxHeaderGroupStyle:column:grid.pipeTrigger" [column]="column"
[style.min-width]="column.resolvedWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL"
[style.flex-basis]="column.resolvedWidth | igxHeaderGroupWidth:grid.defaultHeaderGroupMinWidth:hasMRL"
[style.left]="column.rightPinnedOffset" (pointerdown)="grid.navigation.focusOutRowHeader($event)">
(pointerdown)="grid.navigation.focusOutRowHeader($event)">
</igx-grid-header-group>
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@
[style.min-height.px]="minHeight"
[style.min-width]="col.resolvedWidth"
[style.max-width]="col.resolvedWidth"
[style.flex-basis]="col.resolvedWidth"
[style.left]="col.rightPinnedOffset">
[style.flex-basis]="col.resolvedWidth">
</igx-grid-summary-cell>
}
</ng-template>
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@
[style.min-width]="col.resolvedWidth"
[style.max-width]="col.resolvedWidth"
[style.flex-basis]="col.resolvedWidth"
[style.left]="col.rightPinnedOffset"
[width]="col.getCellWidth()"
[visibleColumnIndex]="col.visibleIndex"
[value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
Expand Down Expand Up @@ -155,7 +154,6 @@
[style.min-width]="col.resolvedWidth"
[style.max-width]="col.resolvedWidth"
[style.flex-basis]="col.resolvedWidth"
[style.left]="col.rightPinnedOffset"
[width]="col.getCellWidth()"
[visibleColumnIndex]="col.visibleIndex"
[value]="data | dataMapper:col.field:grid.pipeTrigger:data[col.field]:col.hasNestedPath"
Expand Down
Loading