Add a custom React component to a column's header by using the headerRenderer
property. Custom
header renderers provide a natural way to display specialized content in your LyteNyte Grid headers.
LyteNyte Grid renders your custom header within a managed container. The grid controls and maintains the container structure, while your custom renderer controls the content displayed inside it.
A header renderer is a React component that receives the LyteNyte Grid API and the associated column
as props. Your header renderer must return a ReactNode
.
Besides directly providing a function, the headerRenderer
property also accepts a string
value.
When you provide a string, LyteNyte Grid treats it as a key for a registered header renderer.
You can register header renderer components and refer to them by name. This approach is useful when:
To register a header renderer, set the columnHeaderRenderers
property in the initial value you
provide to useLyteNyte
. You can then refer to any registered header renderer by its name.
Each approach has different advantages:
Directly providing a React component:
Using a registered header renderer: