Hi Kendo Team,
I’m working on creating a common reusable component for the Kendo React Grid in my project. I’ve built two components:
CustomGrid
– a wrapper around the KendoGrid
component where I pass the data and configuration.CustomGridColumn
– a wrapper around the KendoGridColumn
component.
When I use CustomGrid
with the regular GridColumn
inside it, everything works perfectly.
However, when I try to replace GridColumn
with my CustomGridColumn
component, the columns do not render at all – it's like they're not recognized by the grid. I'm passing all the necessary props and structure correctly, but it's still not working.
Could you please help me understand what might be causing this issue? Is there a special requirement for column components to be recognized by the Grid
?
Thanks in advance for your help!