-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cdkVirtualFor doesn't detect changes in array #14501
Labels
area: cdk/scrolling
P3
An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
Comments
This isn't because of how the virtual scroll CDK works but instead of how the default Angular change detection works. The change detection wont trigger on array mutations, which causes your example to fail. One way to solve it is to create a copy of your array after the mutation is done, and it will work. See working example: |
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Dec 26, 2018
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Dec 26, 2018
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Jan 30, 2019
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
May 24, 2019
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Feb 9, 2020
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Mar 6, 2020
When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
Any update on this issue? |
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
Feb 17, 2021
…tated When an array is passed to `cdkVirtualFor`, it falls back to creating an `ArrayDataSource` which won't emit if the array has changed. Since the intention of the `cdkVirtualFor` is to be (more or less) a drop-in alternative for `ngFor`, it is expected that it'll update if the data has changed. These changes add a new type of data source that will allow us to detect changes on the data and to update the view. Fixes angular#14635. Fixes angular#14501.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: cdk/scrolling
P3
An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
What is the expected behavior?
Delete or add items to array is displayed
What is the current behavior?
cdkVirtualFor doesn't respond to changes in the incoming array
What are the steps to reproduce?
https://stackblitz.com/edit/angular-jttzzn
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
See angular dependencies in stackblitz. Chrome 70.0.3538.110
The text was updated successfully, but these errors were encountered: