Hello!
The main goal of my developments is to display information on a table (with pagination) and filter the data by text inputs and multi-selectors.
I have a table and a text input.
table:
- add-on with server-side pagination (limit offset based)
- script on event "Change Page" that only prints page changed (that is supposed to trigger the data source query)
- has a graphql query on the data source (irrelevant for this issue I think)
Input:
- simple input that will trigger a query with 2s of debounce.
Every time I change the inputText the table triggers the pagination (I have the log instantaneous, simulating the query trigger). After 2s the query is triggered by the inputText event handler, as supposed.
Somehow, the table depends on the textInput:
The searchTerm on the table updates its value at the same time for the content of textInput, despite the searchMode being off.
So, how can I want to remove a text input from table dependencies?
Thanks