Skip to content

Commit

Permalink
Merge branch 'mpopov/12347' of github.com:IgniteUI/igniteui-angular i…
Browse files Browse the repository at this point in the history
…nto mpopov/12347
  • Loading branch information
simeonoff committed May 9, 2023
2 parents 86eb0a6 + a4789f9 commit 08180a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ import { IgxGridModule } from 'igniteui-angular';
- `IgxExpansionPanelTitleDirective` and `IgxExpansionPanelDescriptionDirective` show tooltip of the provided text content.
- `IgxDateRangePicker`
- Added `showWeekNumbers` input that toggles whether or not the number of a week will be visible next to it
- `IgxGrid`, `IgxHierarchicalGrid`:
- `totalItemCount` can now also be bound as `Input` in remote virtualization scenarios.

## 15.1.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,9 @@ export class IgxGridComponent extends IgxGridBaseDirective implements GridType,
* this.grid1.totalItemCount = 55;
* ```
*/
@Input()
public set totalItemCount(count) {
this.verticalScrollContainer.totalItemCount = count;
this.cdr.detectChanges();
}

public get totalItemCount() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,9 +479,9 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
* this.grid1.totalItemCount = 55;
* ```
*/
@Input()
public set totalItemCount(count) {
this.verticalScrollContainer.totalItemCount = count;
this.cdr.detectChanges();
}

public get totalItemCount() {
Expand Down

0 comments on commit 08180a0

Please sign in to comment.