Hey, I created a table using the plasmic interface and it has a default search input which can be used to filter the data displayd on the table.
The question is, how can i implement the search input from the interface and filter the table data based on the inserted value, is that even possible through the interface, do I have to create the component through JS code ?
Assuming this is the Ant Design Pro table component, this does not seem to be possible. At least I did not find any way to do this.
So yes, we have to use some JS code to implement a search function to filter a table made of repeated stacks.
Alternatively, to filter for instance by category, we can use select components and use dynamic values in the data query, but that would require to refresh the data for each selection.