Trying to figure out how to filter my data across all pages of a table that is pulling API data (WooCommerce products). My API supports URL parameter for search, which I have working, however, my Table Settings does not include an onOptionChangelike outlined here.
Additionally, my API does not support searching for a product’s category, but rather only supports searching product names or just simply all the categories available (not what products are associated with them ). I’m currently taking the JSON output and getting ALL information about products (which includes category name) and am transforming the JSON to just read the key’s value ({{currentRow.categories[0].name}}) .
I recon you missed this line from the doc - Server-side filtering requires us to use another widget like a dropdown which can provide users a list of filters that our APIs support..
You see onOptionChange is only applicable in case of an external filter using Select/multi-select widget.