docs(VDataTable): note fixed-header requires height#22991
Open
n0liu wants to merge 1 commit into
Open
Conversation
The fixed-header prop has no effect unless a height is also set, which is a common point of confusion. Mirror the hint already present in the VTable docs so VDataTable users know both props are needed. resolves vuetifyjs#20201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The fixed-header prop on
VDataTablehas no visible effect unless a height is also set — without a constrained scroll container there is nothing for the header to stay fixed against. This is an easy point of confusion (see #20201), and the Data table docs never mentioned it, even though the base VTable docs already do.This adds a Fixed header subsection under the Data table Props section that mirrors the existing VTable wording, plus a
::: warningcallout that makes the height requirement explicit.Documentation-only change — no component or behavior changes.
resolves #20201