-
Notifications
You must be signed in to change notification settings - Fork 10k
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
Add amendable OverscanCount parameter to the QuickGrid for virtualization. #55078
Conversation
…nCount" from the QuickGrid initialization to the Virtualization Component.
…tialization of the component.
…quickgrid for clarity and future-proofing
@dotnet-policy-service agree company="Retro Rabbit" |
@SteveSandersonMS May I request a review for this please. I may need some feedback on the API changes. Thanks in advance. |
src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/QuickGrid.razor.cs
Outdated
Show resolved
Hide resolved
…Grid/src/QuickGrid.razor.cs
@MattyLeslie Certainly, thanks for the prompt. This looks great. As long as the build passes I think we can accept this as-is. |
@SteveSandersonMS Great to hear, thanks for the review ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks very much!
QuickGrid: Add OverscanCount Parameter (#49263)
Summary of Changes:
The addition of an OverscanCount parameter to the QuickGrid component. This parameter directly interfaces with the pre-existing OverscanCount property within the Virtualize component during initialization.
Description:
In contrast to the unmodifiable overscan property within the Virtualize component, this enhancement allows for the QuickGrid component to expose a configurable property named OverscanCount. Upon initialization, this property updates the existing OverscanCount attribute within the Virtualize component. The default value remains consistent at "3".
Fixes
#49263 by introducing the OverscanCount property within the QuickGrid component and initializing the Virtualize component with the specified OverscanCount value.