Skip to content

Commit ebc47cd

Browse files
committed
chore(*): address the changes in spec
1 parent 0b8a258 commit ebc47cd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

projects/igniteui-angular/src/lib/grids/headers/grid-header-group.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<ng-template #defaultCollapseIndicator>
2828
<igx-icon [attr.draggable]="false" >
29-
{{column.expand ? 'expand_less' : 'chevron_right'}} </igx-icon>
29+
{{column.expand ? 'expand_more' : 'chevron_right'}} </igx-icon>
3030
</ng-template>
3131

3232
<ng-container *ngIf="!grid.hasColumnLayouts && column.columnGroup">

src/app/grid-column-groups/grid-column-groups.sample.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
</igx-column-group>
5858
</igx-grid>
5959
<span igxButton (click)="log()">Pin first group</span>
60-
<span igxButton (click)="pinGroup()">Toggle expand - Address Information</span>
60+
<span igxButton (click)="pinGroup()">Toggle visibleOnCollapse - Person Details</span>
61+
<span igxButton (click)="hideGroup()">Toggle expand - Address Information</span>
6162
<span igxButton (click)="toggleCollapsible()">Toggle collapsible - General Information</span>
6263
</section>
6364
</div>

src/app/grid-column-groups/grid-column-groups.sample.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ export class GridColumnGroupsSampleComponent implements AfterViewInit {
7575

7676
toggleCollapsible() {
7777
// this.collapse = !this.collapse;
78-
(this.grid.columnList.filter(c => c.header === 'Address Information')[0] as any).collapsible =
79-
!(this.grid.columnList.filter(c => c.header === 'Address Information')[0] as any).collapsible;
78+
(this.grid.columnList.filter(c => c.header === 'General Information')[0] as any).collapsible =
79+
!(this.grid.columnList.filter(c => c.header === 'General Information')[0] as any).collapsible;
8080
}
8181

8282
ngAfterViewInit() {

0 commit comments

Comments
 (0)