I'm experiencing an issue with my filter stack not affecting the table.
I have a text input field that triggers a change event to set the filter, but it isn't working as expected.
I added another change event for notifications, and that works fine, which leads me to believe the problem lies with the filter stack rather than the change event.
Is there a way to resolve this issue?
Thanks,
Shir
1 Like
HI there @shir_Indaporker,
I think the operation "Includes" is expecting your table values to be an array, if that isn't the case then it won't be able to work.
If you want an exact match, then you will use the "=" operator. If you want a match for any of the character strings you type in, you can use the "Search term" option in your table settings (although that will search for values in ALL your columns).
Hi @MiguelOrtiz ,
Thank you for the suggestion. I have tried using the "=" operator, and I even wrote some custom JavaScript code to set the filter, but unfortunately, neither approach worked.
Interestingly, when I define the filter directly using the filter button on the table, it works as expected. However, when I try to reset the filter stack via JavaScript, it doesn't seem to have any effect.
It appears that the issue might be with accessing the table through JavaScript.
Do you have any other suggestions on how to resolve this?
Thanks, Shir
Hi @shir_Indaporker ,
As you mentioned, here is an example of triggering a change event to set filters using text input, which works fine.
Feel free to ask if you need further assistance or have additional questions. We're here to help!
3 Likes