Skip to content

Commit 243f703

Browse files
committed
chore(igxForOf): Update Readme and Changelog
1 parent 4b6a209 commit 243f703

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@ All notable changes for each version of this project will be documented in this
107107
@include igx-progress-circular($theme);
108108
```
109109

110+
- `IgxForOf`
111+
- `IgxForOfTotalItemCount` input is added for the cases when the data is from remote services. This will allow setting the count of the items through the template. And gives the opportunity for the developers to use AsyncPipe for this option:
112+
```html
113+
<ng-template igxFor let-item [igxForOf]="data | async" [igxForOfTotalItemCount]="count | async"
114+
[igxForContainerSize]="'500px'" [igxForItemSize]="'50px'"></ng-template>
115+
```
116+
110117
## 8.2.6
111118

112119
### New Features

projects/igniteui-angular/src/lib/directives/for-of/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ When the contents of the iterator changes, `igxForOf` makes the corresponding ch
6868
| igxForScrollContainer | string | Only the strings `vertical` and `horizontal` are valid and specify the scroll orientation |
6969
| igxForContainerSize | string | The px-affixed size of the container along the axis of scrolling |
7070
| igxForScrollContainer | IgxForOf | Optionally pass the parent `igxForOf` instance to create a virtual template scrolling both horizontally and vertically |
71+
| igxForTotalItemCount | number | The total count of the virtual data items, when using remote service. This is exposed to allow setting the count of the items through the template |
7172

7273
### Outputs
7374

0 commit comments

Comments
 (0)