You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
I try to load and show all the data in the table, and it works.It takes about 5s to load all data. But I found that the progress bar has some problems. The progress bar almost reaches the end, it will go back again. It will keep doing the same action in this 5s.
Is it any wrong in my code? I simple using the sample html in the table.
Thank you.
The text was updated successfully, but these errors were encountered:
If you look in the source template (src/templates/md-table-progress.html), you can see that this is because this libary uses the 'indeterminate' mode of the progress bar, which means it's only loading or not loading and doesn't update the progress bar to show the progress of the operation: <md-progress-linear ng-show="deferred()" md-mode="indeterminate"></md-progress-linear>
There is nothing wrong with your code, it's just the way it works when using this library.
You can compare the different modes that is available in Angular Material in their documentation
Dear all,
Below is my code:
And the testing_data.json have about 2000+ records like:
I try to load and show all the data in the table, and it works.It takes about 5s to load all data. But I found that the progress bar has some problems. The progress bar almost reaches the end, it will go back again. It will keep doing the same action in this 5s.
Is it any wrong in my code? I simple using the sample html in the table.
Thank you.
The text was updated successfully, but these errors were encountered: