Skip to content
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

[HxGrid] Placeholder rendering performance optimization #730

Open
hakenr opened this issue Jan 12, 2024 · 1 comment
Open

[HxGrid] Placeholder rendering performance optimization #730

hakenr opened this issue Jan 12, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@hakenr
Copy link
Member

hakenr commented Jan 12, 2024

Suggestion by @crdo:

I found what I think is a nice spot for improving the performance of rendering those placeholders.
Jirka everywhere added <span class="placeholder-glow"><span class="paceholder"></span></span> and it seems that he puts that placeholder as a Blazor component into each column.
In reality, however, only the inner part, i.e., <span class="paceholder"></span> is needed, and the class determining the animation of the placeholder can be applied just once somewhere at the root of the table. As it is now, it's being repeated in each cell over and over again.

@hakenr hakenr added the enhancement New feature or request label Jan 12, 2024
@hakenr hakenr added this to the Priority 2 - Normal milestone Jan 12, 2024
@hakenr hakenr self-assigned this Jan 12, 2024
@hakenr
Copy link
Member Author

hakenr commented Jan 15, 2024

Iteration 1 - switched Blazor components to HTML elements (4.5.0-pre1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant