You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I studied this more, and found another workaround to set title attribute to sorter.
<Grid
ref={(element) => {
setTimeout(
() =>
element
?.getElementsByTagName('vaadin-grid-sorter')[0]
.setAttribute('title', 'Sort by last name and first name'),
100
);
}}
---
>
...
</Grid>
Currently, only
GridFilterColumn
hasheaderRenderer
marked as unsupported:react-components/src/GridFilterColumn.tsx
Lines 14 to 18 in e033b0b
However, the
vaadin-grid-sort-column
element doesn't supportheaderRenderer
either, see vaadin/hilla#1097We should update
GridSortColumn
accordingly to avoid confusion.The text was updated successfully, but these errors were encountered: