Table filter 'results' property

Is tere a property for this? The ‘results’
image
I would like to bind that to a status bar like this:
image
Currently it shows the full table listing, I would like to bind the 300 to the filter results which would be 69 in this case.

Thanks

Add an expression binding:

len({../Table.props.filter.results.data})

Your path will most likely be different, use the property selector to get the correct path.

Your question is a little unclear but I think you are asking how to get the number of results returned by the Perspective table component’s filter function. Try this:

  • props.filter.enabled : true.
  • props.filter.results.enabled : true.
  • You can then get the number of results using an expression binding to somthing like
    len({this.props.filter.results.data}).