We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The headerRenderer seems to work only for standard GridColumn, but is ignored when using GridSortColumn
<Grid items={people}> <GridColumn path="id" headerRenderer={() => { return <div>TestHeader1</div> }} /> <GridSortColumn path="name" headerRenderer={() => { return <div>TestHeader2</div> }} /> </Grid>
The headerRenderer would work also for GridSortColumn.
The column name is got from the path instead of headerRenderer:
- Vaadin / Hilla version: 2.0.6, 2.1.2 - Node version: v20.3.1 - Java version: 19 - OS version: MacOS - Browser version Chrome - IDE/Editor (if applicable): IntelliJ IDEA
The text was updated successfully, but these errors were encountered:
Thanks for the issue. The current behavior is by design - see the comment in the code about using default header renderer.
Sorry, something went wrong.
Closing in favor of vaadin/react-components#130.
No branches or pull requests
Description of the bug
The headerRenderer seems to work only for standard GridColumn, but is ignored when using GridSortColumn
Minimal reproducible example
Expected behavior
The headerRenderer would work also for GridSortColumn.
Actual behavior
The column name is got from the path instead of headerRenderer:
Versions:
The text was updated successfully, but these errors were encountered: