-
Notifications
You must be signed in to change notification settings - Fork 119
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
too many components for aura - strike_row, strike_dataGrid #66
Comments
I think it would better to have Pagination on the data grid in this case but @siddharatha fix sounds like it should be added too |
Do you have something like infinitive scrolling on your roadmap? |
Part of the problem is actually in the strike_row component. There are too many aura:if conditions are being evaluated unnecessarily. Also, if these are ordered by the most commonly encountered data types, you can significantly improve performance. Try replacing the TR block with the one below and let me know what improvements you see. Two other improvements that can be made are around javascript performance and the dependency reference already mentioned.
|
added @siddharatha suggestion and expect to see the change in our next release |
When am trying to display more than 1000 records in the strike_dataGrid it throws an exception when it displays huge volume of records.
The fix which worked is adding the below line on strike_dataGrid
<aura:dependeny resource="strike_row" />
The text was updated successfully, but these errors were encountered: