Slate: how to add automatic filter function to table

In my project we are using Slate to create a new app. Part of this app is a normal table where the end user shall see its data line by line. However there is no filter functionality.

How can this be added? Compared to opening a normal dataset in Foundry where you can right click the fieldname and enter a filter value, we want to use this as well in the table shown in our slate app.

Any Ideas, how to implement this easily? Sorting is part of our table in slate automatically…

In Slate, the expectation is that you would configure a separate filtering interaction using the various Control widgets.

To use these widgets, you’d commonly access your Ontology data through the Object Set builder or the OSDK integration then manipulate the resulting data object in a function to produce the needed data format to populate the control widget configuration.

The state of those widgets, representing the results of the user interaction, could then be used to filter the data that is populating the table.

Depending on your requirements, Workshop has a much more tightly-coupled model for working with data from the ontology and makes it trivial to provide a number of different filter interactions for data displayed in a table.