Table dependencies

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:

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

Hello @Miguel_Correia!

I am a little confused by your last question "So, how can I want to remove a text input from table dependencies?".

I believe that the app is telling you that it needs the text input to filter the table data to match what is typed in.

If you remove the text input, you can set up other options for filtering the table.

Could you share a video of the behavior? Is the dependency block your app from querying/filter?