Skip to content

Commit 6d4abf4

Browse files
committed
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into ddincheva/collapsibleGroups
2 parents 304eae4 + fc163aa commit 6d4abf4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

projects/igniteui-angular/src/lib/directives/autocomplete/autocomplete.directive.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export class IgxAutocompleteDirective extends IgxDropDownItemNavigationDirective
201201
}
202202

203203
/** @hidden @internal */
204-
@HostListener('input', ['$event'])
204+
@HostListener('input')
205205
onInput() {
206206
this.open();
207207
}
@@ -217,8 +217,8 @@ export class IgxAutocompleteDirective extends IgxDropDownItemNavigationDirective
217217
}
218218

219219
/** @hidden @internal */
220-
@HostListener('keydown.Tab', ['$event'])
221-
@HostListener('keydown.Shift.Tab', [`$event`])
220+
@HostListener('keydown.Tab')
221+
@HostListener('keydown.Shift.Tab')
222222
onTab() {
223223
this.close();
224224
}

projects/igniteui-angular/src/lib/grids/grid/grid-mrl-keyboard-nav.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3072,6 +3072,8 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
30723072
grid.navigateTo(10, col.visibleIndex);
30733073
await wait(DEBOUNCETIME);
30743074
fix.detectChanges();
3075+
await wait(DEBOUNCETIME);
3076+
fix.detectChanges();
30753077

30763078
// cell should be at right edge of grid
30773079
cell = grid.getCellByColumn(10, 'City');
@@ -3085,6 +3087,8 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
30853087
grid.navigateTo(10, col.visibleIndex);
30863088
await wait(DEBOUNCETIME);
30873089
fix.detectChanges();
3090+
await wait(DEBOUNCETIME);
3091+
fix.detectChanges();
30883092

30893093
// cell should be at left edge of grid
30903094
cell = grid.getCellByColumn(10, 'CompanyName');
@@ -3099,6 +3103,8 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
30993103
grid.navigateTo(9, col.visibleIndex);
31003104
await wait(DEBOUNCETIME);
31013105
fix.detectChanges();
3106+
await wait(DEBOUNCETIME);
3107+
fix.detectChanges();
31023108

31033109
// cell should be at right edge of grid
31043110
cell = grid.getCellByColumn(9, 'ID');

src/app/grid/grid.sample.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ <h4>{{ col.field }}</h4>
157157
<p style="color: crimson"></p>
158158
</ng-template>
159159
<ng-template igxCell let-item="item" let-ri="rowIndex" let-column="column">
160-
<igx-checkbox [checked]="item" (change)="grid2.updateCell(ri, $event.target.checked)"></igx-checkbox>
160+
<igx-checkbox [checked]="item" (change)="grid2.updateCell(ri, column?.field, $event.target.checked)"></igx-checkbox>
161161
</ng-template>
162162
</igx-column>
163163
</igx-grid>

0 commit comments

Comments
 (0)