-
On adding filter functionality , I'm getting this error Any help is appreciated. Thanks :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
I cannot help without a full reproduction (Stackblitz, GitHub repo or others...), all the Examples are working fine and they all have Cypress E2E tests running on every PR/Releases. So it has to be your code and again I cannot help just by looking at a print screen. The |
Beta Was this translation helpful? Give feedback.
Update: Fixed it! The issue was because i was assigning
id
of column asquestion.id
which is something like 1000041, this made the functiongetHeaderRowColumn
return undefined as this linereturn headerRowTarget.children[idx]
returns something likechildren[100041]
which does not exist in headerRowTarget. Usingindex
as id fixed the issueTL:DR: Changed column id to index to fix the issue.