This repository was archived by the owner on Jun 1, 2025. It is now read-only.
|
On adding filter functionality , I'm getting this error Any help is appreciated. Thanks :) |
Answered by
Pratosh22
Feb 9, 2024
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 |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Update: Fixed it! The issue was because i was assigning
idof column asquestion.idwhich is something like 1000041, this made the functiongetHeaderRowColumnreturn undefined as this linereturn headerRowTarget.children[idx]returns something likechildren[100041]which does not exist in headerRowTarget. Usingindexas id fixed the issueTL:DR: Changed column id to index to fix the issue.