Skip to content

Commit 2936fb5

Browse files
authored
Merge branch 'master' into rkaraivanov/multi-column-headers
2 parents 6a9ae2f + ef5da52 commit 2936fb5

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
9898
- `onOpen` event renamed to `onOpened`.
9999
- `onClose` event renamed to `onClosed`.
100100
- **Breaking change** All properties that were named `isDisabled` have been renamed to `disabled` in order to acheive consistency across our component suite. This affects: date-picker, input directive, input-group, dropdown-item, tabbar and time-picker.
101+
- The **deprecated** `igxForRemote` input for the `igxFor` directive is now removed. Setting the required `totalItemCount` property after receiving the first data chunk is enough to trigger the required functionality.
101102

102103
## 6.0.3
103104
- **igxGrid** exposing the `filteredSortedData` method publicly - returns the grid data with current filtering and sorting applied.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "../../common/schema/selector.schema.json",
3+
"changes": [
4+
{
5+
"type": "directive",
6+
"selector": "igxForRemote",
7+
"remove": true
8+
}
9+
]
10+
}

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

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ 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-
| igxForRemote | boolean | Enables remote virtualization. Should be used in combination with the OnChunkPreload event, where the new data can be requested from a remote service. Note that the totalItemCount option of the igxFor directive should be updated with the actual total record count from the service. |
7271

7372
### Outputs
7473

projects/igniteui-angular/src/lib/directives/for-of/for_of.directive.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,6 @@ export class LocalService {
12751275
[igxForScrollOrientation]="'vertical'"
12761276
[igxForContainerSize]='height'
12771277
[igxForItemSize]='"50px"'
1278-
[igxForRemote]='true'
12791278
(onChunkPreload)="dataLoading($event)">
12801279
<div [style.display]="'flex'" [style.height]="'50px'">
12811280
{{rowData}}

projects/igniteui-angular/src/lib/directives/for-of/for_of.directive.ts

-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ export class IgxForOfDirective<T> implements OnInit, OnChanges, DoCheck, OnDestr
4444
};
4545
public totalItemCount: number = null;
4646

47-
@DeprecateProperty(`igxForRemote is deprecated, setting this property is no longer needed for remote virtualization`)
48-
@Input() public igxForRemote = false;
49-
5047
@Output()
5148
public onChunkLoad = new EventEmitter<IForOfState>();
5249

0 commit comments

Comments
 (0)